NSDateFormatter *formatter;
NSString *dateString;
formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd-MM-yyyy HH:mm a"];
dateString = [formatter stringFromDate:[NSDate date]];
[formatter release];
appDelegate.myCallLogDict = [[NSMutableDictionary alloc]init];
[appDelegate.myCallLogDict setObject:phoneNo forKey:@"CallLogPhoneNoKey"];
[appDelegate.myCallLogDict setObject:dateString forKey:@"CallLogTimeStampKey"];
を使用するときに認識されていないセレクタがインスタンスに送信されたIはnsmutabledictioneryに電話番号と時間を記憶されていないと私は以下になど、そのdictionery値にアクセスしたい -[NSCFString objectAtIndex:]:nsmutabledictionery
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath method
cell.detailTextLabel.text = [[appDelegate.myCallLogDict objectForKey:@"CallLogTimeStampKey" ]objectAtIndex:row];
cell.textLabel.text = [[appDelegate.myCallLogDict objectForKey:@"CallLogPhoneNoKey"] objectAtIndex:row];
私は上記のコードを実行すると
iは以下のエラーを取得
-[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x5b227e0
2011-12-15 10:06:09.050 MyDialer[1090:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x5b227e0'
私を助けてください
ありがとうございます。
あなたはmyCallLogDictのプロパティを作成し、appappDelegateで合成しましたか? – Maulik
はい私は、アプリケーションの代理人でそれをしました – user198725878
" - [NSCFString objectAtIndex:]:認識できないセレクタ"は、NSStringに対して 'objectAtIndex:'操作を実行しようとしたことを意味します。 –