键盘检测

时间:2012-10-08 11:00:31

标签: ios keyboard

我想在键盘出现时在我的应用中运行一个方法。 是否有预定义的方法或我必须创建它? 以及如何创建它?

1 个答案:

答案 0 :(得分:2)

您可以在键盘显示时收到通知:

UIKeyboardWillShowNotification
UIKeyboardDidShowNotification

您可以像这样注册通知:

[[NSNotificationCenter defaultCenter] addObserver:self
        selector:@selector(keyboardWillShow:)
        name:UIKeyboardWillShowNotification object:nil];

更多here