Dar*_*ust 17
我不确定你想要完成什么,但也许这可以帮助你:注册NSNotificationCenter以接收UIKeyboardWillHideNotification和/或UIKeyboardDidHideNotification.
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(myKeyboardWillHideHandler:)
name:UIKeyboardWillHideNotification
object:nil];
...
- (void) myKeyboardWillHideHandler:(NSNotification *)notification {
NSLog(@"Keyboard wants to hide. What a coward.");
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5440 次 |
| 最近记录: |