使用iPad分割/移动键盘调整UITextField

时间:2014-04-30 15:03:20

标签: ios objective-c ipad

我目前正在我的应用功能中实现键盘不会覆盖我的UITextField(编辑时)。使用键盘通知方法

非常简单
[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(p_keyboardWasShown:)
                                             name:UIKeyboardDidShowNotification object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(p_keyboardWillBeHidden:)
                                             name:UIKeyboardWillHideNotification object:nil];

但问题是,当键盘位于不同的位置(例如顶部)或拆分时,它们不会启动。

有关如何处理这些情况的任何建议吗?

1 个答案:

答案 0 :(得分:0)

很棒的文章在iOS上使用键盘:http://macoscope.com/blog/working-with-keyboard-on-ios/