是否可以为iOS全局订阅UIKeyboardWillShowNotification
和UIKeyboardWillHideNotification
?就像用户打开其他应用程序的输入一样,它会显示键盘提示。
目前,我在 didFinishLaunchingWithOptions:
中通过
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(noticeShowKeyboard:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(noticeHideKeyboard:) name:UIKeyboardWillHideNotification object:nil];
但是它仅在我的应用处于活动状态时有效