码迷,mamicode.com
首页 > 其他好文 > 详细

UIAlertView

时间:2015-04-06 19:00:11      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:弹出对话框

- (IBAction)backAction:(UIBarButtonItem *)sender {
 
        UIAlertView *alertview = [[UIAlertView alloc] initWithTitle:@"提示" message:@"你确定放弃添加吗" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
        [alertview show];

}
#pragma mark alertview

//UIAlertView协议中的方法
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    switch (buttonIndex) {
        case 0:
            break;
        case 1:
            [self dismissViewControllerAnimated:YES completion:nil];
            break;
        default:
            break;
    }
}

UIAlertView

标签:弹出对话框

原文地址:http://9692896.blog.51cto.com/9682896/1629195

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!