iPhone - Have the keyboard slide into view from the right like when editing a note in Contacts

前端 未结 5 1749
轻奢々
轻奢々 2020-12-30 01:33

I\'m looking for a way to slide the keyboard into view from the right, like what happens in the Contacts application when you edit a note.

My problem is that when I

5条回答
  •  天涯浪人
    2020-12-30 02:31

    In iOS 7 (or any version before) you can make a simple thing in loadView, viewDidLoad or viewWillAppear

    [yourTextView performSelector:@selector(becomeFirstResponder) withObject:nil afterDelay:0.0];
    

    In this case you will get left-to-right appearance of the keyboard aligned with the motion of pushing view controller.

提交回复
热议问题