iOS8以后,当当前界面有UITextField等输入框时,需要点击确定pop到上一个页面或者弹出UIAlertView等弹框时,会出现pop界面后键盘出现又隐藏的问题,这是alertView的动画和键盘动画起冲突了导致的。解决方法有两种:
第一种:等键盘完全收起之后再pop、push或者弹出UIAlertView。直接dispatch_after个至少0.25秒再执行pop或者push。至于为什么是0.25秒,因为系统键盘收起的duration就是0.25秒。
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.4f * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[alertView show];
});
第二种:在iOS8的SDK中,苹果提倡使用UIAlertController取代UIAlertView。
#define SYSTEM_VERSION [[UIDevice currentDevice].systemVersion floatValue]
if (SYSTEM_VERSION >= 8.0) {
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"提示文字" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[self.navigationController popToViewController:viewController animated:YES];
}];
[alertController addAction:okAction];
[self presentViewController:alertController animated:YES completion:nil];
} else {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:@"提示文字" delegate:self cancelButtonTitle:@"确定" otherButtonTitles: nil];
[alertView show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
[self.navigationController popToViewController:viewController animated:YES];
}