你好,歡迎來到IOS教程網

 Ios教程網 >> IOS訊息 >> 關於IOS >> IOS 改變系統導航欄自帶的返回action事件

IOS 改變系統導航欄自帶的返回action事件

編輯:關於IOS

#import

@protocol BackButtonHandlerProtocol

@optional

// Override this method in UIViewController derived class to handle 'Back' button click

-(BOOL)navigationShouldPopOnBackButton;

@end

@interface UIViewController (BackButtonHandler)

@end

#import "UIViewController+BackButtonHandler.h"

@implementation UIViewController (BackButtonHandler)

@end

@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

#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;

}

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved