我有两个controllers
1st isself
和 2nd is maincontroller
,我正在推maincontroller
入stack,所以后退按钮会自动出现。
在这里,当用户按下后退按钮时,我需要发出警报。
我怎样才能做到这一点?
我有两个controllers
1st isself
和 2nd is maincontroller
,我正在推maincontroller
入stack,所以后退按钮会自动出现。
在这里,当用户按下后退按钮时,我需要发出警报。
我怎样才能做到这一点?
或者您可以使用UINavigationController
的委托方法。willShowViewController
按下 VC 的后退按钮时调用该方法。
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
首先使用隐藏后退按钮
self.navigationItem.hidesBackButton = YES;
然后创建自己的自定义按钮:
UIBarButtonItem *backBtn =[[UIBarButtonItem alloc]initWithTitle:@"back" style:UIBarButtonItemStyleDone target:self action:@selector(popAlertAction:)];
self.navigationItem.leftBarButtonItem=backBtn;
[backBtn release];
你的选择器在这里:
- (void)popAlertAction:(UIBarButtonItem*)sender
{
//Do ur stuff for pop up
}
最好和最简单的方法
尝试将其放入要检测压力的视图控制器中:
-(void) viewWillDisappear:(BOOL)animated {
if ([self.navigationController.viewControllers indexOfObject:self]==NSNotFound) {
// back button was pressed. We know this is true because self is no longer
// in the navigation stack.
}
[super viewWillDisappear:animated];
}
创建自己的并将UIBarButtonItem
其设置leftBarButtonItem
为viewDidLoad
.mainController
例如(这里我使用了一个系统项,但您也可以创建一个不同的项,有关详细信息,请参阅类参考)。
UIBarButtonItem *leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showAlertView:)];
self.navigationItem.leftBarButtonItem = leftBarButtonItem;
// only if you don't use ARC
// [leftBarButtonItem release];
在哪里
- (void)showAlertView:(id)sender
{
// alert view here...
}
添加带有操作的自定义后退按钮并在该操作方法中设置警报。您可以从此处添加自定义后退按钮:http: //www.applausible.com/blog/? p=401
viewControllerCount - 是保存先前在 UINavigationController 中的 viewController 数量的 var。然后,我们检查viewControllerCount > [viewControllers count]如果是,我们就知道我们会返回(即后退按钮模仿)。
- (void)navigationController:(UINavigationController *)navigationController
willShowViewController:(UIViewController *)viewController
animated:(BOOL)animated
{
NSArray *viewControllers = [navigationController viewControllers];
if (viewControllerCount > [viewControllers count])
{
// your code
}
viewControllerCount = [viewControllers count];
}
extension ViewController: UINavigationControllerDelegate {
// when the self != viewcontroller ,it's mean back
func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
if self != viewController {
// your code
}
}}
创建一个按钮并给出按钮操作如下。
[self alert];
当显示警报时,点击是后
[self.navigationController popViewController];
在这之后,
self.navigationController.LeftBarButton = myButton;
这可能会有所帮助