iOS重寫系統的返回按鈕,捕獲系統返回按鈕事件

#import <UIKit/UIKit.h>async

@protocol BackButtonHandlerProtocol <NSObject>ide

@optionalpost

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

-(BOOL)navigationShouldPopOnBackButton;spa

@end .net

@interface UIViewController (BackButtonHandler) <BackButtonHandlerProtocol>orm

@end 事件


#import "UIViewController+BackButtonHandler.h"get


@implementation UIViewController (BackButtonHandler)animation


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

}

相關文章
相關標籤/搜索