Reputation: 623
Has anyone encountered this situation?
When I was trying to run application, which was completed in Xcode6Beta, it kept showing:
2014-07-14 00:28:48.131 WeightLogger2[1866:32214] Can't find keyplane that supports type 8 for keyboard iPhone-Portrait-DecimalPad; using 2617181025_Portrait_iPhone-Simple-Pad_Default
Upvotes: 7
Views: 6312
Reputation: 907
FYI, apple may rejected your app due to this. They complained that the app did no allow the user to enter input on an iPad. So you can respond that the app works fine on an actual iPad and that on a simulator all one has to due is disable external keyboard or toggle SW keyboard. They will accept this comment and allowed the app to be approved.
Upvotes: 0
Reputation: 3358
uncheck this option
iOS Simulator -> Hardware -> Keyboard -> Connect Hardware Keyboard
however if you are using number pad or decimal pad then this log again will be displayed, but in simulator you can use the number pad or decimal pad. may be we need to configure our text field with the new preferred way of using keyboard with ios 8. I could not found it yet. or it may be a bug according to this
Xcode iOS 8 Keyboard types not supported
Upvotes: 3
Reputation: 623
You just need to toggle the software keyboard by selecting:
iOS Simulator -> Hardware -> Keyboard -> Toggle Software Keyboard.
Then, everything works
Upvotes: 21