自动根据键盘位置调整UITextView的高度
生活随笔
收集整理的這篇文章主要介紹了
自动根据键盘位置调整UITextView的高度
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
這個應該是一個通用的任務了吧,鍵盤彈出來的時候,UITextView(或者UITextField)會被遮擋。解決的辦法就不是很能通用了。
1. 如果有UIScrollView做父view的話只需要滾動到合適的位置即可。
2. 如果沒有UIScrollView的話,可以恰當的臨時調整一下UITextView的高度,使得最下面一行的輸入也能被看到。
下面只對第二種情況說明一下要點:
我的做法是創建一個UITextView的派生類,這樣可以方便重用。
(不派生類也是可以的,原理一樣。)
注冊2個Notification消息,分別是UIKeyboardDidShowNotification和UIKeyboardWillHideNotification
表示鍵盤已經彈出來和鍵盤要消失的時候發送。
- (void)registerForKeyboardNotifications {[[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(keyboardWasShow:)name:UIKeyboardDidShowNotificationobject:nil];[[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(keyboardWillBeHidden:)name:UIKeyboardWillHideNotificationobject:nil]; }- (void)unregisterForKeyboardNotifications{[[NSNotificationCenterdefaultCenter] removeObserver:selfname:UIKeyboardDidShowNotificationobject:nil];[[NSNotificationCenterdefaultCenter] removeObserver:selfname:UIKeyboardWillHideNotificationobject:nil]; }不過,要注意的是這兩個消息不是嚴格一一對應的。消息處理:
- (void)keyboardWasShow:(NSNotification *)notification {// 取得鍵盤的frame,注意,因為鍵盤在window的層面彈出來的,所以它的frame坐標也是對應window窗口的。CGRect endRect = [[notification.userInfoobjectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];CGPoint endOrigin = endRect.origin;// 把鍵盤的frame坐標系轉換到與UITextView一致的父view上來。if ([UIApplicationsharedApplication].keyWindow && self.superview) {endOrigin = [self.superview convertPoint:endRect.originfromView:[UIApplicationsharedApplication].keyWindow];}CGFloat adjustHeight = originalContentViewFrame.origin.y + originalContentViewFrame.size.height;// 根據相對位置調整一下大小,自己畫圖比劃一下就知道為啥要這樣計算。// 當然用其他的調整方式也是可以的,比如取UITextView的orgin,origin到鍵盤origin之間的高度作為UITextView的高度也是可以的。adjustHeight -= endOrigin.y;if (adjustHeight > 0) {CGRect newRect = originalContentViewFrame;newRect.size.height -= adjustHeight;[UIViewbeginAnimations:nilcontext:nil];self.frame = newRect;[UIViewcommitAnimations];} }- (void)keyboardWillBeHidden:(NSNotification *)notification{// 恢復原理的大小[UIViewbeginAnimations:nilcontext:nil];self.frame = originalContentViewFrame;[UIViewcommitAnimations]; }BTW:
現在的云計算貌似已經很火熱了,但是分享的渠道還是不能暢通,沒有一個合適的分享協議。EverNote寫好的筆記想要給人分享,就只有分享到twitter和facebook2個選擇。
大家是怎么把筆記分享到博客平臺的呢?
oschina有沒有開放什么對外的接口,實在不行自己動手給EverNote做個分享的插件吧。
?
轉載于:https://my.oschina.net/dourgulf/blog/80723
總結
以上是生活随笔為你收集整理的自动根据键盘位置调整UITextView的高度的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SQL Server复制需要有实际的服务
- 下一篇: NO.54 在禅道里建立部门结构、添加