From: Jay Freeman (saurik) Date: Wed, 1 Dec 2010 14:57:55 +0000 (-0800) Subject: Use UISearchBar::_searchField if -[UISearchBar searchField] does not exist. X-Git-Tag: v1.1.0%b1~454 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/bcccf498d65a2328a14a0ea32bac2a7154e8a08a Use UISearchBar::_searchField if -[UISearchBar searchField] does not exist. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 0b022ee3..46d5ddfb 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -7504,7 +7504,13 @@ freeing the view controllers on tab change */ search_ = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, [[self view] bounds].size.width, 44.0f)]; [search_ layoutSubviews]; [search_ setPlaceholder:UCLocalize("SEARCH_EX")]; - UITextField *textField = [search_ searchField]; + + UITextField *textField; + if ([search_ respondsToSelector:@selector(searchField)]) + textField = [search_ searchField]; + else + textField = MSHookIvar(search_, "_searchField"); + [textField setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin]; [search_ setDelegate:self]; [textField setEnablesReturnKeyAutomatically:NO];