私のプロジェクトでは、tableViewCellとplistファイルをデータに使用しました。私はすべての細胞をクリックしてイベントを作りたい。ビューの呼び出しtext.xib。コード:テーブルビューのセルからビューをプッシュ
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ test *testVar = [[test alloc] initWithNibName:@"test" bundle:nil];
if ([[countries objectAtIndex:indexPath.row] isEqual:[countries objectAtIndex:indexPath.row]]){
[testVar setTitle:@"Test"];
}
[self.navigationController pushViewController:testVar animated:YES];
[testVar release];
}
国 - 日付の私の配列が、それはtableViewCellの主要なラベルです。