Search code examples
iosios8ios8-extensionios8-share-extension

iOS share extension dismiss keyboard


I'm implementing a share extension for my app, so far everything is going good except I can't seem to dismiss the keyboard that automatically opens using the default layout/storyboard.

I'm keeping the default design/layout (SLComposeServiceViewController) which includes the preview image and UITextview, the UITextview automatically gets in focus which opens the keyboard.

Normally this is fine, but if you're not logged in my app I display an UIAlertController saying you need to login to share. The problem is the keyboard opens at the same time as the alert.

I've tried [self.view endEditing:YES]; and [self.textView resignFirstResponder]; in both viewDidLoad, viewDidAppear and viewWillAppear with no luck.


Solution

  • Found the answer! I didn't read the docs very carefully...

    I had to do [self.textView resignFirstResponder]; in -(void)presentationAnimationDidFinish