控制器加載方式

寫在前面的話

近期接到這樣一個需求,需要為app內(nèi)機構(gòu)詳情頁提供2種不同的布局,效果圖如下,

機構(gòu)詳情頁的2種布局.png

拿到該需求后,你都有哪些思路?
1、創(chuàng)建2個UIViewController, 界面xib實現(xiàn),邏輯代碼貼貼貼。
2、創(chuàng)建1個UIViewController,純代碼實現(xiàn)。
3、創(chuàng)建1個UIViewController, 不同場景加載不同的storyboard或者xib實現(xiàn)。
我們采取第三種方法實現(xiàn),那就引出了今天的問題,iOS控制器ViewControlle加載都有幾種方式?

代碼實現(xiàn)

通過alloc或者new方法實現(xiàn)。

故事板加載

Main.storyboard實現(xiàn)如下截圖

故事板加載控制器.png

代碼實現(xiàn)部分

#import "AHTestViewController.h"

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    
AHTestViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"AHDemo2"];

在跳轉(zhuǎn)到機構(gòu)詳情頁時只需按照不同場景加載不同故事板即可.


if (item.organ_style.integerValue==1){
            
        OrganOtherDetailViewController *VC = [[OrganOtherDetailViewController alloc]initWithType:detailone];
        VC.item =self.orgaDataArr[indexPath.section];
         [self.navigationController pushViewController:VC animated:YES];
}else if (item.organ_style.integerValue==2){
        OrganOtherDetailViewController *VC = [[OrganOtherDetailViewController alloc]initWithType:detailtwo];
        VC.item =self.orgaDataArr[indexPath.section];
        [self.navigationController pushViewController:VC animated:YES];
        }


xib實現(xiàn)

新建一xib文件,在xib文件中做如下設(shè)置

xib加載控制器.png

代碼實現(xiàn)部分

#import "AHTestViewController.h"

 AHTestViewController *vc = [[AHTestViewController alloc]initWithNibName:@"AHTest" bundle:nil];
    

演示代碼下載https://github.com/ahao1011/CreatViewsDemo

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 15,410評論 4 61
  • 其實很巧,在參與這次21天手寫的活動中,也是我去保險公司學(xué)習(xí)的時候,所以每天我都是非常匆忙的趕著寫東西,因為一顆心...
    小喬是唐寶娘親閱讀 282評論 0 3
  • 我們家老朱,在不熟悉的人面前一定是高C的表現(xiàn),冷靜、分析、邏輯、理性,給人一種距離感。一旦成為了朋友并得到他的認(rèn)同...
    ChristineWang閱讀 979評論 0 6
  • 惜若時光 燦若霓裳 清風(fēng)拂起三千青絲 如北海蕩起的波浪 漸漸的 輕輕的 滿滿的 走過你的身旁 嗅一縷飄散指尖的芳香
    不是百家閱讀 101評論 0 0

友情鏈接更多精彩內(nèi)容