インポートしようとすると、@implementationコンテキストにないメソッド定義を示すインポート時にエラーが発生します。私はこのエラーが次のコード内にあると思う...メソッド定義に@implementationでないコンテキスト:エラー
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *infoDictionary = [self.jsonArray objectAtIndex:indexPath.row];
static NSString *Prospects = @"agencyname";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:Prospects];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:Prospects] autorelease];
}
// setting the text
cell.text = [infoDictionary objectForKey:@"agencyname"];
// Set up the cell
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ViewAgencyController *dvController = [[ViewAgencyController alloc] initWithNibName:@"ViewAgency" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:dvController animated:YES];
[dvController release];
dvController = nil;
}
私はそれを出します。
誤ってこれらのメソッド定義をクラスのヘッダーのインターフェイス内に配置しましたか?これらはどのファイルですか? –
didSelectRowAtIndexPathは、このエラーが発生した唯一の変更です。私はViewAgencyControllerを#importして、その下のセクションを追加しました – savagenoob