首页 > 代码库 > xcode5设置自定义*.xib文件为main interface
xcode5设置自定义*.xib文件为main interface
从xcode5/iOS SDK 7.0开始,新建Single View Application默认界面是*.storyboard文件
如果删除*.storyboard新建自定义的xib文件,然后在Project Settings里设置的Main Interface为xib文件的话,运行时会报NSNullException错误。
用以下方法修改 AppDelegate.h/AppDelegate.m两个文件就可以使用自定义的xib做Main Interface
首先Project Settings -> General -> Deployment Info 里的Main Interface设为空,然后再让Delegate来引导第一个页面
- 新建RootViewController,包括.m/.h/.xib文件
- AppDelegate.h
// AppDelegate.h#import <UIKit/UIKit.h>#import "RootViewController.h"@class RootViewController;@interface AppDelegate : UIResponder <UIApplicationDelegate>@property (strong, nonatomic) UIWindow *window;@property (strong, nonatomic) RootViewController *rootView;@end
- AppDelegate.m
#import "AppDelegate.h"@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.rootView = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil]; if ([self.window respondsToSelector:@selector(setRootViewController:)]) { self.window.rootViewController = self.rootView; } else { [self.window addSubview:self.rootView.view]; } [self.window makeKeyAndVisible]; return YES;}@end
到这里就完成了Main Interface的设置。
如果需要用NavigationController/TabBarController引导页面的话,用NavigationController/TabBarController的定义替换RootViewController,再用ViewController设置为他们的RootView就可以了
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。