我在iOS 5上工作。我无法找到以前在Xcode中找到的基于导航的应用程序模板。
那么我可以使用什么呢?
答案 0 :(得分:13)
如果您想从头开始,请先从基于单一视图项目开始,然后转到故事板并选择viewController,转到编辑器>嵌入>导航控制器。
答案 1 :(得分:8)
您需要使用 Master-Detail Application 模板。从下拉列表中选择设备系列为 iPhone 。创建项目后,您的appDelegate将包含UINavigationController
实例。
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) UINavigationController *navigationController;
@end
和
@implementation AppDelegate
@synthesize window = _window;
@synthesize navigationController = _navigationController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
MasterViewController *masterViewController = [[[MasterViewController alloc] initWithNibName:@"MasterViewController" bundle:nil] autorelease];
self.navigationController = [[[UINavigationController alloc] initWithRootViewController:masterViewController] autorelease];
self.window.rootViewController = self.navigationController;
[self.window makeKeyAndVisible];
return YES;
}
答案 2 :(得分:3)
使用故事板并将视图控制器拖入其中。然后转到编辑器&gt;嵌入&gt;导航控制器。
答案 3 :(得分:1)
从空应用程序项目开始。添加UINavigationController。
这篇文章Creating a Navigation based iOS 5 iPhone Application using TableViews将指导您。本教程Navigation Controllers and View Controller Hierarchies。