私は私のコンソールにエラーを取得しています:"isEqualToString" ココアエラー
2009-05-30 20:17:05.801 ChuckFacts [1029:20B] *** - [ジョークisEqualToString:]:認識されません
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Joke"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { [[NSBundle mainBundle] loadNibNamed:@"TableCell" owner:self options:nil]; cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease]; cell = tableCell; } NSString *jokeText = [jokes objectAtIndex:indexPath.row]; UILabel *jokeTextLabel = (UILabel*) [cell viewWithTag:1]; jokeTextLabel.text = jokeText; NSString *dateText = formattedDateString; UILabel *dateTextLabel = (UILabel*) [cell viewWithTag:2]; dateTextLabel.text = dateText; [self todaysDate]; return cell; }
「ジョーク」完全な配列である: セレクタはここ
0x52e2f0が、私はエラーがから来ていると考えている私のコードでインスタンスに送信しましたあなたが知っておく必要がある場合は冗談を言う。
なぜこのエラーが発生するのですか?
インスタンスに送信0x52e2f0
を私は「0x52e2f0は」そう、見つけることが容易になるだろう何であるかを判断するにはどうすればよい:
また、あなたが言うエラーの一部を見ています次回問題?
正確な複製:http://stackoverflow.com/questions/865527/cocoa-i-have-an-error-and-after-reading-and-trying-to-figure-it-out-i-cant –