iOS-Runtime之關於頁面跳轉的捷徑,ios-runtime跳轉

來源:互聯網
上載者:User

iOS-Runtime之關於頁面跳轉的捷徑,ios-runtime跳轉
寫在前面

在我們操作頁面跳轉時,如果當前的類不是UIViewcontroller(下面用VC表示),你會不會寫一個代理,或者block給VC傳遞資訊,然後在VC裡面進行

 ///假如targetVc是將要跳轉的頁面 [self.navigationController pushViewController:targetVc animated:YES];

拿tableViewCell做例子,如果每個頁面展示的tableViewCell中,如果存在不少的這樣操作,就會寫很多代理或者block,如果不這樣,那又該怎麼做呢,思路是擷取當前顯示在最頂層的VC,網上有很多方法,先看一個普通的方法

- (UIViewController *)currentViewController {    UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow;    UIViewController *vc = keyWindow.rootViewController;    while (vc.presentedViewController) {        vc = vc.presentedViewController;                if ([vc isKindOfClass:[UINavigationController class]]) {            vc = [(UINavigationController *)vc visibleViewController];        } else if ([vc isKindOfClass:[UITabBarController class]]) {            vc = [(UITabBarController *)vc selectedViewController];        }    }    return vc;}

上面的方法可以或許可以擷取最頂層的VC(我在網上找的一個,沒有測試,這裡只做對比),但是有沒有感覺很繁瑣,當然也可以把它寫在一個工具裡面,每次用這個工具裡面的這個方法,也可以擷取,但是我始終覺得繁瑣,哈哈;

利用Runtime實現

runtime是一個好玩的東西,上一篇我簡單說了它的一些常用功能,這裡結合Category來實現擷取當前VC需求

1.建立一個基於UIApplication的分類

 

點擊下一步就建好了

2.利用Runtime添加屬性

在UIApplication+CurrentViewController.h檔案中,添加

///用於擷取當前 UIViewController@property (nonatomic, weak) UIViewController *currentViewController;

在UIApplication+CurrentViewController.m檔案中,引入標頭檔

#import <objc/runtime.h>

利用runtime實現屬性的get set方法

///set- (void)setCurrentViewController:(UIViewController *)currentViewController{    objc_setAssociatedObject(self, @selector(currentViewController), currentViewController, OBJC_ASSOCIATION_ASSIGN);}///get- (UIViewController *)currentViewController{    return objc_getAssociatedObject(self, _cmd);}
3.實現

在需要擷取當前VC的檔案中,引入標頭檔,也可以直接將該標頭檔放入宏檔案中

#import "UIApplication+CurrentViewController.h"

在VC的viewWillAppear方法中,添加

[UIApplication sharedApplication].currentViewController = self;

這樣,我們在任何一個地方擷取,只需要添加如下代碼,就可以擷取當前的VC,擷取到之後,不管是push、present還是performSegueWithIdentifier,都可以實現頁面的跳轉

UIViewController *viewVc = [UIApplication sharedApplication].currentViewController;
4.延伸

上面在需要用到的在每一個VC中都需要添加

[UIApplication sharedApplication].currentViewController = self;

那麼,可以建一個基於UIViewController的基類BaseViewController,然後在BaseViewController的viewWillAppear方法中添加上述代碼,我們在建立VC時,只需要繼承BaseViewController就可以了!

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.