我在項目中使用了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的主要標籤。