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
Post a Comment