我是一名新生,刚刚加入了一家 iphone 编程软件公司作为实习生。我是 iphone 编程新手,但不是计算机编程新手。我不知道如何使用 UIbutton 切换到下一个视图控制器。
我的编码如下...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (!self.detailViewController) {
self.detailViewController = [[HelloDetailViewController alloc] initWithNibName:@"HelloDetailViewController" bundle:nil];
}
NSDate *object = [_objects objectAtIndex:indexPath.row];
self.detailViewController.detailItem = object;
[self.navigationController pushViewController:self.detailViewController animated:YES];
}