From 0ff4298d6bd2c638368966cf57933af33ff7c4a1 Mon Sep 17 00:00:00 2001 From: Douglas Forster Date: Wed, 27 Apr 2016 22:58:27 -0700 Subject: [PATCH] UI Tweak: Immediately show the keyboard when searching for web images --- FPPicker/Platforms/iOS/FPSearchController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FPPicker/Platforms/iOS/FPSearchController.m b/FPPicker/Platforms/iOS/FPSearchController.m index 4e8176f..1afc46e 100644 --- a/FPPicker/Platforms/iOS/FPSearchController.m +++ b/FPPicker/Platforms/iOS/FPSearchController.m @@ -67,6 +67,9 @@ - (void)viewDidAppear:(BOOL)animated [self.FPSearchDisplayController setActive:YES animated:YES]; + + // Give focus to the search field and display the keyboard. + [self.FPSearchDisplayController.searchBar becomeFirstResponder]; } - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation