LoginSignup
2
2

More than 5 years have passed since last update.

UIAlertView 複数回 + UITextView でキーボードが消えない問題

Posted at

UIAlertViewに重なってキーボードが出てしまう!!

  • ちゃんと resignFirstResponder してるのに!!
  • という状況に遭遇しました

  • 結論から言います

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
}

を・・・・・

-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{
}

に変えるだけで直ります

clickedButtonAtIndex 内で次の UIAlertView を呼び起こすと、
実際は resignFirstResponder が挟まる間もなく次の UIAlertView が出てしまうということでしょうか。
どちらにしてもUIAlertViewはもう捨てたほうがいいですね

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2