当按下UINavigationController上的后退按钮时如何调用方法? (苹果手机)

当按下UINavigationController上的后退按钮时,如何调用方法.我需要能够在显示一个视图之前调用一个方法.这可能吗?如果是这样,请问有人可以建议如何做到这一点吗?

解决方法

一个快速解决方案是为viewWilldisappear:方法添加一个实现.一旦viewController响应后退按钮消失就会被触发.

- (void)viewWilldisappear:(BOOL)animated {
  //... 
  //make you stuff here
  //... 
}

一个解决方案是向后退按钮添加自定义响应器.您可以修改viewController的init方法,如下所示:

- (id)init {
    if (self = [super init]) {
        //other your stuff goes here
        //... 
        //here we customize the target and action for the backBarButtonItem
        //every navigationController has one of this item automatically configured to pop back
        self.navigationItem.backBarButtonItem.target = self;
        self.navigationItem.backBarButtonItem.action = @selector(backButtonDidpressed:);
    }
    return self;
}

然后可以使用选择器方法如下.请务必正确关闭viewController,否则您的导航控制器将不会按需要弹出.

- (void)backButtonDidpressed:(id)aResponder {
    //do your stuff
    //but don't forget to dismiss the viewcontroller
    [self.navigationController popViewControllerAnimated:TRUE];
}

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...