寻自己 发表于 2012-12-19 22:16:55

IOS AppDelegate.m 详解

<div id="cnblogs_post_body">今天在学习 IOS 中 Storyboard 的使用中,操作都是没问题的,就是启动后一直出现的是 白色 界面,不能进行跳转操作。找了好久也没找到方法,最后,问了老大,发现了问题所在,原来是 AppDelegate.m 文件中的, 该注释掉的没注释掉 :

<div class="cnblogs_code"> - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    //self.window = [ initWithFrame:[ bounds]];    //Override point for customization after application launch.    //self.window.backgroundColor = ;    //;    return YES;}
页: [1]
查看完整版本: IOS AppDelegate.m 详解