プッシュ通知を使用するアプリを開発しています。
メソッドで -
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
電話する -
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound |UIRemoteNotificationTypeAlert)];
プッシュ通知に登録します。すべて正常に動作します。しかし、「becomeFirstResponder」に必要な以上alert view
のものを表示したいのもインストールです。UITextField
問題は、キーボードが enablePushNotofication アラートビューのボタンと重なり、ユーザーがそれを閉じることができないことです。
とにかく、enablePushNotoficationアラートビューが閉じられたときに呼び出されるメソッドはありますか? (そのため、アラートビューを表示できます)
ありがとう