您好,登錄后才能下訂單哦!
小編給大家分享一下iOS橫屏彈鍵盤的高度錯誤異常怎么辦,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
- (void)handleKeyboardWillShowNotification:(NSNotification *)notification { NSTimeInterval animationDuration = 0; CGRect keyboardFrame = CGRectZero; NSDictionary *userInfo = [notification userInfo]; [[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&animationDuration]; [[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] getValue:&keyboardFrame]; printf("keyboardFrame height: %f\n", keyboardFrame.size.height); [self showWithAnimationDuration:animationDuration keyboardFrame:keyboardFrame]; }
彈出新window,rootViewController里面有個 UITextField ,然后調用 becomeFirstResponder ,啟動app,第1次彈出鍵盤時,會走進兩次通知,打印鍵盤高度:
keyboardFrame height: 125.000000 keyboardFrame height: 302.000000
這兩個高度都是錯誤的,會導致鍵盤上面的工具條錯位:
第2次彈出鍵盤時:打印鍵盤高度為:
keyboardFrame height: 248.000000
這時候就是正常的高度了。
需要解決第一次異常的問題。
查看層級,發現鍵盤window有個子view UIInputSetHostView,這就是鍵盤顯示的父view,這時候取得這個view,也就取得了鍵盤的真正高度:
- (CGFloat)keyboardHeight { UIWindow *keyboardWindow = [[[UIApplication sharedApplication] windows] lastObject]; UIView *inputView = [keyboardWindow.rootViewController.view tkp_findSubview:@"UIInputSetHostView"]; if (inputView) { return inputView.tkp_height; } return 0; }
其中 tkp_findSubview: 方法為 UIView 的分類方法:
- (UIView *)tkp_findSubview:(NSString *)name { return [self tkp_findSubview:name resursion:NO]; } - (UIView *)tkp_findSubview:(NSString *)name resursion:(BOOL)resursion { Class class = NSClassFromString(name); for (UIView *subview in self.subviews) { if ([subview isKindOfClass:class]) { return subview; } } if (resursion) { for (UIView *subview in self.subviews) { UIView *tempView = [subview tkp_findSubview:name resursion:resursion]; if (tempView) { return tempView; } } } return nil; }
以上是“iOS橫屏彈鍵盤的高度錯誤異常怎么辦”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。