Can't find keyplane that supports type 4 and 5 on iPhone 5s iOS 8.1.2 and Simulator 8.1

前端 未结 2 1084
野的像风
野的像风 2021-02-05 04:24

I receive on a iPhone 5s with iOS v8.1.2 the following messages in the Xcode console:

  • Can\'t find keyplane that supports type 4 for keyboard iPhone-Portrait-Number
相关标签:
2条回答
  • 2021-02-05 05:04

    if it will help some one , i have this problem on cordova capacitor also , it was very strange for me until i remeber i put on css

    *{
      -webkit-user-select: none;
      /* Safari */
      -moz-user-select: none;
      /* Firefox */
      -ms-user-select: none;
      /* IE10+/Edge */
      user-select: none;
      /* Standard */
    }
    

    yes it make keyboard have no access to fields also if you face same issue exactly : change * to div,span,img etc....

    0 讨论(0)
  • 2021-02-05 05:05

    This is a known issue for several devices and Apple doesn't seem to want to fix it, as you said the keyboard you've requested still shows up and works properly. Filing a radar with apple is frequently the only thing you can do, then start hoping!

    http://bugreport.apple.com/

    0 讨论(0)
提交回复
热议问题