iPhone开发 当输入的键盘会挡住UITextField的处理事件,当键盘
来源:未知 责任编辑:智问网络 发表时间:2013-09-02 11:47 点击:次
挡住的处理事件地址在:http://www.2cto.com/kf/201203/121641.html
以下是还原的处理事件:
注册监听事件:
[[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(keyboardWillBeHidden:) name:UIKeyboardWillHideNotificationobject:nil];
事件代码:
- (void)keyboardWillBeHidden:(NSNotification*)aNotification {
CGPoint scrollPoint = CGPointMake(0.0, 0.0);
[scView setContentOffset:scrollPoint animated:YES];
}
摘自 凡娃软件
相关新闻>>
- 发表评论
-
- 最新评论 更多>>