iOS 輸入時鍵盤處理問題

来源:http://www.cnblogs.com/jukaiit/archive/2017/11/02/7774003.html
-Advertisement-
Play Games

最正規的辦法,用通知 step 1:在進入視圖的時候添加監視:(viewDidLoad什麼的) step 2:在鍵盤動作的時候移動視圖: step 3:在退出視圖的時候註銷通知viewDidUnload: step 4:dealloc: 這些代碼是摘自apple sample code Keyboa ...


在iOS的開發過程中,有時候需要處理鍵盤的彈出和收回。

以及鍵盤彈出收回時、view的處理

最正規的辦法,用通知

 

step 1:
在進入視圖的時候添加監視:(viewDidLoad什麼的)

 

    //監聽鍵盤的通知
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];

 


step 2:
在鍵盤動作的時候移動視圖:

 

- (void)keyboardWillShow:(NSNotification *)notification {
    
    /*
     Reduce the size of the text view so that it's not obscured by the keyboard.
     Animate the resize so that it's in sync with the appearance of the keyboard.
     */
    NSDictionary *userInfo = [notification userInfo];
    
    // Get the origin of the keyboard when it's displayed.
    NSValue* aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
    // Get the top of the keyboard as the y coordinate of its origin in self's view's coordinate system. The bottom of the text view's frame should align with the top of the keyboard's final position.
    CGRect keyboardRect = [aValue CGRectValue];
    keyboardRect = [self.view convertRect:keyboardRect fromView:nil];
    
    CGFloat keyboardTop = keyboardRect.origin.y;
    CGRect newTextViewFrame = self.view.bounds;
    newTextViewFrame.size.height = keyboardTop - self.view.bounds.origin.y;
    
    // Get the duration of the animation.
    NSValue *animationDurationValue = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];
    NSTimeInterval animationDuration;
    [animationDurationValue getValue:&animationDuration];
    
    // Animate the resize of the text view's frame in sync with the keyboard's appearance.
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:animationDuration];
    
    self.reportTableView.frame = newTextViewFrame;
    [UIView commitAnimations];
}

- (void)keyboardWillHide:(NSNotification *)notification {
    
    NSDictionary* userInfo = [notification userInfo];
    
    /*
     Restore the size of the text view (fill self's view).
     Animate the resize so that it's in sync with the disappearance of the keyboard.
     */
    NSValue *animationDurationValue = [userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey];
    NSTimeInterval animationDuration;
    [animationDurationValue getValue:&animationDuration];
    
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:animationDuration];
    
    self.reportTableView.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width,[UIScreen mainScreen].bounds.size.height  - 55 - 64);
    
    [UIView commitAnimations];
}

 

 



step 3:
在退出視圖的時候註銷通知
viewDidUnload:

     [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];

 

step 4:
dealloc:

-(void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:nil object:nil];
}

 


這些代碼是摘自apple sample code KeyboardAccessory.

 

細節自己修改下就好了,比如那個reportTableView、CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width,[UIScreen mainScreen].bounds.size.height  - 55 - 64)

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 安全管理 mysql自帶的mysql資料庫中的user表可查看用戶所有資料 創建用戶帳號 重命名用戶帳號 刪除用戶帳號 mysql5以前必須先REVOKE帳號相關的許可權,然後再DROP USER; 用戶的許可權 查看 表示允許ben在crashcourse資料庫上使用select 表示撤銷ben在cr ...
  • 以前對mysql的認識與應用只是停留在增刪改查的階段,最近正好在學習mysql相關內容,看了一本書叫做《MySQL必知必會》,看了之後對MySQL的高級用法有了一定的瞭解。以下內容只當讀書筆記。 如有轉載請註明出處~ 存儲過程的使用 執行存儲過程 執行名為productpricing的存儲過程 創建 ...
  • Oracle修改欄位名 Oracle修改欄位類型和長度 如果是修改數據類型比如由varchar2修改為int且欄位內有值,會報如下錯誤 解決方法參考:http://blog.csdn.net/itmyhome1990/article/details/8681206 出處:http://blog.cs ...
  • 其中最後一個參數'sysdate+1/1440'表示時間間隔為每分鐘。其它常用的時間間隔的設置如下: (1)如果想每天凌晨1點執行,則此參數可設置為'trunc(sysdate)+25/24'; (2)如果想每周一凌晨1點執行,則此參數可設置為'trunc(next_day(sysdate,1))+ ...
  • 世上豈無千里馬,人中難得九方皋; 酒船魚網歸來是,花落故溪深一篙。 關於資料庫的第一篇博客,這是我的第二次,人生第二春,什麼也不想說,靜靜的開始吧,至於為什麼寫唐詩,請看第一篇文章! Oracle 初級(一) 同學去面試被問到了一個問題:DML 語句指什麼,當時同學一臉懵圈的看著面試官,最後微微一笑 ...
  • 這裡對於App在微信開放平臺上申請AppID和secret在這裡就略過了,我們微信的授權登錄流程,騰訊官網給的流程如下: 1. 第三方發起微信授權登錄請求,微信用戶允許授權第三方應用後,微信會拉起應用或重定向到第三方網站,並且帶上授權臨時票據code參數; 2. 通過code參數加上AppID和Ap ...
  • 地推是推廣app的一種重要手段,同時地推結算對地推統計的精度的要求非常高,而openinstall就是一款符合要求的地推統計結算工具。它不僅多渠道統計能力強,安裝設備識別精準,渠道統計精度高。還支持地推人員單獨查看所負責渠道的實時統計數據,避免統計數據爭議,同時讓也讓推廣人員實時瞭解自己的推廣狀態,... ...
  • 一,效果圖。 二,工程圖。 三, 代碼。 ViewController.h #import <UIKit/UIKit.h> //loading #import "GPLoadingButton.h" @interface ViewController : UIViewController { //l ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...