IOS 移除storyboard
生活随笔
收集整理的這篇文章主要介紹了
IOS 移除storyboard
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
為什么80%的碼農都做不了架構師?>>> ??
我是IOS新手,都說storyboard是個好東西,但是我搞了一會始終沒有搞懂,并且我覺得學習一門語言,使用類似以前網頁三劍客這種所見所得工具,不太利于學習,所以我就想著移除storyboard
1:我們通過xcode新建的項目,默認會有個Main.storyboard ,我們就是要干掉這個
2:移除storyboard
3:刪除Main.storyboard 之后,再啟動app就和黑屏,這個時候就需要修改代碼
在AppDelegate.m文件中didFinishLaunchingWithOptions方法加入以下代碼
-?(BOOL)application:(UIApplication?*)application?didFinishLaunchingWithOptions:(NSDictionary?*)launchOptions?{//?Override?point?for?customization?after?application?launch.????self.window=[[UIWindow?alloc]?initWithFrame:[[UIScreen?mainScreen]?bounds]];????RootViewController?*rootView?=?[[RootViewController?alloc]?init];?self.window.rootViewController?=?rootView;????[self.window?makeKeyAndVisible];????return?YES; }其中RootViewController自己新建一個出來(我設置RootViewController的背景是紅色的)
上面步驟做完之后,我們就可以開開心心學習OC了。。后期有時間在慢慢研究storyboard
原文地址: IOS 移除storyboard
標簽: ios ??
智能推薦
- 運維技能大全 | Devops Tools 周期表
- 【ZBar】ios錯誤ignoring file xxx missing required architecture x86_64 in file
- linux shell工具集合
- Nginx 禁用IP IP段
- 【No.3 Ionic】超級逗表情 App
轉載于:https://my.oschina.net/54php/blog/600297
總結
以上是生活随笔為你收集整理的IOS 移除storyboard的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CIKERS Shane 2019061
- 下一篇: 最大熵的Java实现