概述
方法一:在dealloc里面书写监听事件,因为只有pop才会调用dealloc,push不会掉用
- (void)dealloc {YLLog(@"123"); }
方法二:在- (void)viewWillDisappear:(BOOL)animated中调用
- (void)viewWillDisappear:(BOOL)animated{
if ([self.navigationController.viewControllers indexOfObject:self]==NSNotFound) {
NSLog(@"clicked navigationbar back button");
}
}
方法三:重写返回按钮,然后调用返回按钮的方法即可:如
- (void)popViewcontrollerFunc {
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" message:@"确定要放弃到手的奖品吗" delegate:self cancelButtonTitle:@"点错啦" otherButtonTitles:@"狠心放弃", nil];alert.tag = 10001;[alert show];
}
转载于:https://www.cnblogs.com/sunfuyou/p/6437900.html
最后
以上就是孤独音响为你收集整理的拦截iOS系统导航栏返回按钮事件-三种方法的全部内容,希望文章能够帮你解决拦截iOS系统导航栏返回按钮事件-三种方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复