Is there a way to force up a software keyboard when the user has a iOS bluetooth keyboard device installed?
Or, to that end, is it possible in code to disable a specific bluetooth device?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not from within the application’s code, if you’re planning on getting into the app store. Apple expressly does not provide methods to show or hide keyboard, instead pushing you to use
becomeFirstResponderandresignFirstResponder.You may be able to do this through some non-AppStore-friendly methods, but somehow I don’t think that’s the answer you’re looking for.
(Note – you could make a fake, Apple-looking keyboard when the real one is hidden, and check if the real one is hidden based on whether a view is visible, but if Apple notices you doing this, you’ll get denied.)