如何從當前視圖移動到另一個視圖?我目前的觀點是viewcontroller,我想移動另一個視圖控制器。這是我的代碼..移動到UITableView行選擇的另一個視圖
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
SecondView *secondView = [[SecondView alloc] initWithNibName:@"second" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:secondView animated:YES];
}
我使用xib文件作爲另一個視圖。
什麼是SecondView? (一個視圖控制器,或?) – 2011-03-08 11:51:00
第二個視圖是另一個UIViewController。 – Maulik 2011-03-08 11:53:22
你爲什麼要專門調用initWithNibName:bundle:? (默認情況下,調用init將包含類似於'if(self = [super initWithNibName:nil bundle:nil]){'這會爲你加載nib。「 – 2011-03-08 11:55:02