|
@@ -154,7 +154,9 @@ static NSString *kDisplayedFirstSteps = @"Did we display the first steps tutoria
|
|
|
if (_usingTableViewToShowData) {
|
|
|
_searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
|
|
|
UINavigationBar *navBar = self.navigationController.navigationBar;
|
|
|
- _searchBar.barTintColor = navBar.barTintColor;
|
|
|
+ if (SYSTEM_RUNS_IOS7_OR_LATER) {
|
|
|
+ _searchBar.barTintColor = navBar.barTintColor;
|
|
|
+ }
|
|
|
_searchBar.tintColor = navBar.tintColor;
|
|
|
_searchBar.translucent = navBar.translucent;
|
|
|
_searchBar.opaque = navBar.opaque;
|