0
在我的標籤欄應用程序的第一個選項卡上有一個表視圖。然後當點擊任何我想要做推動secondviewController的視圖的行。並有標籤。標籤的文字必須是選中的行的文字。我試試這個,但不進入第二個標籤:S我該怎麼做?另外在secondViewController類中有3個視圖。表視圖選擇索引方法不起作用(推)
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SecondViewController *detailViewController = [[SecondViewController alloc] initWithNibName:@"SecondView" bundle:nil];
// ...
// Pass the selected object to the new view controller.
NSUInteger row2 = [indexPath row];
denemelik=row2;
[self.navigationController pushViewController:detailViewController animated:YES];
detailViewController.enyakinfirma.text= [ws2.CustomerName objectAtIndex:[indexPath row]];
NSLog(@"kontrol2 %@",ws2.CustomerName);
[detailViewController release];
}
我想這一點,但仍然沒有工作:( –
是這樣secondViewController類有另2查看不推secondView :( –
chould你幫我,我不能找到解決辦法:?:S:S –