今天遇见一个奇怪的bug,当我的UIAlertView 消失的时候键盘弹出来了,这个只出现在第一次安装的时候
万能的stackoverflow上面有这个问题的一些解决方案:
1.使用新的api,UIAlertController
1 | UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Alert Title!" message:@"This is an alert message." preferredStyle:UIAlertControllerStyleAlert]; |
2.另外一个方法就是延迟调用一下alertView.
1 | @weakify(self); |
3.另外一种注销键盘
1 | [[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil]; |
出现的原因
可能是键盘状态没有完全被收回,导致出现的
如果有更好的方案可以告诉我