iOS8 UIAlertView pop/push頁面後,鍵盤閃一下的問題
iOS8 UIAlertView 推出頁面後,鍵盤閃一下的問題,有需要的朋友可以參考下。
iOS8以後,噹噹前介面有UITextField輸入框時,需要點選確定pop到上一個頁面時,會出現pop介面後鍵盤出現又隱藏的問題,因為iOS8的SDK中,蘋果提倡使用UIAlertController取代UIAlertView。
#define SYSTEM_VERSION [[UIDevice currentDevice].systemVersion floatValue]
if (SYSTEM_VERSION >= 8.0) {
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"提示文字" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[self.navigationController popToViewController:viewController animated:YES];
}];
[alertController addAction:okAction];
[self presentViewController:alertController animated:YES completion:nil];
} else {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:@"提示文字" delegate:self cancelButtonTitle:@"確定" otherButtonTitles: nil];
[alertView show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
[self.navigationController popToViewController:viewController animated:YES];
}
相關文章
- 微信6.7.4版本,ios 鍵盤頂上去頁面 收起鍵盤後頁面不下去bug修復iOS
- vue之this.$router.push頁面重新整理問題Vue
- iOS 解決導航欄隱藏,顯示,頁面跳轉閃一下的問題iOS
- iOS8中UIAlertView和UIActionSheet河裡去了?iOSUIView
- 移動端軟鍵盤彈出影響頁面佈局問題
- [轉]iOS8之後棄用UIAlertView,改用UIAlertController的詳細說明iOSUIViewController
- 請問一下關於socket跟頁面請求的問題
- 解決vue+element 鍵盤迴車事件導致頁面重新整理的問題Vue事件
- Ios8之後, 定位的delegate不能觸發的問題iOS
- Android軟鍵盤彈出,覆蓋h5頁面輸入框問題AndroidH5
- 鍵盤燈在閃
- ios pop介面 鍵盤彈起又收回iOS
- 前端技術分享:頁面效能優化問題覆盤前端優化
- 解決關機後鍵盤滑鼠燈亮問題!
- 記一次頁面有EditText時,鍵盤彈出的問題
- Laya頁面過後fgui介面不能點選問題GUI
- 移動端鍵盤遮擋頁面原理分析
- .net網站建設頁面提交後css失效的問題網站CSS
- 手機網站長時間按住頁面出現閃退問題網站
- 判斷ViewController push、pop操作ViewController
- js頁面跳轉的問題(跳轉到父頁面、最外層頁面、本頁面)JS
- js中push(),pop(),unshift(),shift()的用法小結JS
- Android 解決表情皮膚和軟鍵盤切換時跳閃的問題Android
- ios8系統定位問題iOS
- 記錄一次開發中遇到的問題:Vue 重新整理頁面後,頁面空白Vue
- JSP頁面中新增完一個專案後,重新整理頁面出現的問題JS
- 解決bootstrap的modal使用Esc鍵無法關閉頁面問題boot
- javascript中shift()、unshift()、push()、pop() 陣列操作JavaScript陣列
- 自定義Push/Pop和Present/Dismiss轉場
- iOS自定義轉場動畫(push、pop動畫)iOS動畫
- 028 Rust死靈書之Vec的push和popRust
- vue頁面渲染是閃爍{{}}Vue
- IP頁面訪問域名介面問題
- Silence 主題暗黑模式根據瀏覽器配置,以及切換頁面閃白屏的問題處理模式瀏覽器
- H5頁面載入後表單獲取焦點並喚起軟鍵盤?H5
- 解決 iOS View Controller Push/Pop 時的黑影iOSViewController
- 模式視窗頁面不更新的問題模式
- 字串處理,push pop路徑,組合命令字串