ios 指定頁面禁用第三方鍵盤,使用系統的鍵盤

來源:互聯網
上載者:User

標籤:html   指定   com   tle   raw   window   方法   root   draw   

因為項目需要,需要在添加銀行卡和提現頁面使用數字鍵台, 如果使用者沒有安裝第三方鍵盤是沒啥大問題的,但是如果使用者手機安裝了第三方的鍵盤的話,有時候會無法調用起第三方的數字鍵台,或者第三方鍵盤樣式不符合,這個時候系統的數字鍵台是比較符合我們的需求的。那麼我們如何在特定的頁面使用系統內建的數字鍵台呢?

其實簡單我們只需要實現 UIApplicationDelegate 的如下代理方法即可:

   /// 此方法的作用是是否使用第三方鍵盤    ///    /// - Parameters:    ///   - application: application 對象    ///   - extensionPointIdentifier: 第三方鍵盤的標識    /// - Returns: true 表示使用第三方鍵盤 fanse 表示不使用    func application(_ application: UIApplication, shouldAllowExtensionPointIdentifier extensionPointIdentifier: UIApplicationExtensionPointIdentifier) -> Bool {        //遍曆當前根控制器的所有子控制器找到我們需要的子控制器        for vc in (self.window?.rootViewController?.childViewControllers)! {            //這裡的MainNavigationController是我自訂的導航控制器            if vc.isKind(of: MainNavigationController.self) {                for vc1 in vc.childViewControllers {                    //如果是 添加銀行卡介面 和 提現頁面 禁止使用第三方鍵盤                    if  vc1.isKind(of: AddBBankCardController.self) || vc1.isKind(of: WithdrawViewController.self)  {                        return false                    }                }            }        }        return true    }

關於系統內建的數字鍵台無法輸入小數點的問題如何解決請看我的另一篇文章:  ios自訂數字鍵台

ios 指定頁面禁用第三方鍵盤,使用系統的鍵盤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.