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

前端 未结 2 1085
野的像风
野的像风 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....

提交回复
热议问题