导航返回按钮的事件处理

来源:互联网 发布:淘宝短款女尼外套 编辑:程序博客网 时间:2024/05/17 01:22
导航返回按钮的事件处理
-(void)navigationShouldPopOnBackButtonSelect ///在这个方法里写返回按钮的事件处理
{
    [self showAlertView:@"当前有未保存的数据,确认返回?" antagAler:100];

}


-(void)alertAction:(NSString *)titleStr
{
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:titleStr message:nil preferredStyle:UIAlertControllerStyleAlert];
    [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    }] ];
    [self presentViewController:alert animated:YES completion:nil];
}

0 0
原创粉丝点击