iOS8 UIAlertView键盘闪一下的问题

本文介绍了如何在iOS8及更高版本中使用UIAlertController替代老旧的UIAlertView来实现提示功能,包括代码示例和注意事项。
 1 if (SYSTEM_VERSION >= 8.0) {
 2                     UIAlertController *alertCtrl = [UIAlertController alertControllerWithTitle:@"赎回成功" message:nil preferredStyle:UIAlertControllerStyleAlert];
 3                     UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
 4                         [self.navigationController popViewControllerAnimated:YES];
 5                     }];
 6                     [alertCtrl addAction:okAction];
 7                     [self presentViewController:alertCtrl animated:YES completion:nil];
 8                     
 9                 }else{
10                 //这个else一定要写,否则会导致在ios8一下的真机crash
11                     UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"赎回成功" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定", nil];
12                     alert.tag = 998;
13                     [alert show];
14                 }
15 
16 #pragma mark-UIAlertViewDelegate
17 -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
18 {
19     if (alertView.tag == 998) {
20         [self.navigationController popViewControllerAnimated:YES];
21     }
22 }

 iOS 8 以后不用alertView了。使用UIAlertController代替。使用方法相同。

 

转载于:https://www.cnblogs.com/-yun/p/4962802.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值