日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > windows >内容正文

windows

重写系统中的UINavigationController返回按钮的事件

發布時間:2025/3/17 windows 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 重写系统中的UINavigationController返回按钮的事件 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1.擴展UIviewController
UIViewController+BackButtonHandler.h

#import <UIKit/UIKit.h> @protocol BackButtonHandlerProtocol <NSObject> @optional // Override this method in UIViewController derived class to handle 'Back' button click -(BOOL)navigationShouldPopOnBackButton; @end @interface UIViewController (BackButtonHandler) <BackButtonHandlerProtocol> @end

UIViewController+BackButtonHandler.m文件

#import "UIViewController+BackButtonHandler.h"@implementation UIViewController (BackButtonHandler) @end

2.擴展UINavigationController ,也可以繼承 使用

@implementation UINavigationController (ShouldPopOnBackButton) - (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem*)item { if([self.viewControllers count] < [navigationBar.items count]) { return YES; } BOOL shouldPop = YES; UIViewController* vc = [self topViewController]; if([vc respondsToSelector:@selector(navigationShouldPopOnBackButton)]) { shouldPop = [vc navigationShouldPopOnBackButton]; } if(shouldPop) { dispatch_async(dispatch_get_main_queue(), ^{ [self popViewControllerAnimated:YES]; }); } else { // Workaround for iOS7.1. Thanks to @boliva - http://stackoverflow.com/posts/comments /34452906 for(UIView *subview in [navigationBar subviews]) { if(subview.alpha < 1.) { [UIView animateWithDuration:.25 animations:^{ subview.alpha = 1.; }]; } } } return NO; } @end

3.測試使用

#import "ViewController.h #import "UIViewController+BackButtonHandler.h"@implementation ViewController -(void) viewDidLoad { [super viewDidLoad]; self.title = [NSString stringWithFormat:@"Screen-%d", self.navigationController.viewControllers.count]; self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Next" style:UIBarButtonItemStylePlain target:selfaction:@selector(onNextBtn:)]; } -(void) onNextBtn:(id)sender { [self.navigationController pushViewController:[ViewController new] animated:YES]; } -(BOOL) navigationShouldPopOnBackButton ///在這個方法里寫返回按鈕的事件處理 { //這里寫要處理的代碼 [self.navigationController popViewControllerAnimated:YES]; return YES;//返回NO 不會執行 }

總結

以上是生活随笔為你收集整理的重写系统中的UINavigationController返回按钮的事件的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。