ios - Show Custom Keyboard on Launch -


i using following custom keyboard:

https://github.com/kulpreetchilana/custom-ios-keyboards

how make keyboard displayed @ beginning without having touch text view?

depending on version of ios you're using (not sure if works on 8), can do:

- (void)viewdidload; {     [super viewdidload];     [self.textfield becomefirstresponder]; } 

or

- (void)viewdidlayoutsubviews; {     [super viewdidlayoutsubviews];     [self.textfield becomefirstresponder]; } 

in viewcontroller.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -