我有一个 UIViewController,因为我有一个导航栏和一个表格,现在我想从这个视图导航到另一个选择表格行的视图。
我怎样才能做到这一点?
我有一个 UIViewController,因为我有一个导航栏和一个表格,现在我想从这个视图导航到另一个选择表格行的视图。
我怎样才能做到这一点?
首先,通过右键单击文件和组部分并单击“新建文件”选项并将其命名为SecondViewController ,将新的 UIViewController 添加到您的应用程序中。
在创建 SecondViewController 时,确保通过选择“ With XIB for user interface ”选项添加 XIB
假设您想在按钮单击时推送新视图,然后向您的 FirstViewController 添加一个按钮,并在其按钮的TouchUpInside事件中添加以下代码:
SecondViewController *secondView=[[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
[self.navigationController pushViewController:secondView animated:YES];
[secondView release];
如果您使用的是 ARC,则删除[secondView release];
.
如果您需要更多帮助,请告诉我。
希望这可以帮助。
FileName *file=[[FileName alloc] initWithNibName:@"FileName.xib" bundle:nil];
[self.navigationController pushViewController:file animated:YES];
[file release];