摘要: 一:添加通知//数字键盘添加完成 [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(keyboardWillShow:) name:UIKeyboardDidShowNotificationobject:nil];二:数字键盘出现添加//键盘处理- (void)keyboardWillShow:(NSNotification *)note{ UIButton *doneButton = [UIButton buttonWithType:UIButtonTypeCustom]; doneB... 阅读全文
posted @ 2013-08-08 17:42 cocoajin 阅读(1156) 评论(0) 推荐(0)
摘要: 一:添加通知监测键盘高度变化 [selfkeyBoardAutoSize];二:动态改变高度#pragma mark keyboard height auto/* NSNotificationCenter:键盘出现、消失时的通知 UIKeyboardWillShowNotification; UIKeyboardDidShowNotification; UIKeyboardWillHideNotification; UIKeyboardDidHideNotification; */- (void) keyBoardAutoSize{ [[NSNotificationCenter d... 阅读全文
posted @ 2013-08-08 17:39 cocoajin 阅读(898) 评论(0) 推荐(0)