【发布时间】:2012-05-19 21:26:49
【问题描述】:
我希望能够在视图之间切换。 我一直在写一些代码,但它不起作用?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
{
AlleRumViewController *allerum = [[AlleRumViewController alloc] initWithNibName:nil bundle:nil];
if ([[tableData objectAtIndex:indexPath.row] isEqual:@"Alle rum"]) {
[self presentModalViewController:allerum animated:YES];
}
}
你们有谁知道我如何切换?
【问题讨论】:
标签: ios view tableview switching