vote up 1 vote down star
2

alt text

Are the following objects customizable?

1. UISearchBar Scope Buttons (UISegmentedController)

2. UIResultsTableView

3. Keyboard (at least so it's colored black)

flag

0% accept rate
What are you using to generate it: A nib or code? – JoePasq Oct 19 at 23:09
I am using code. I was able to customize everything so thanks everyone for their help, however I wasn't able to delete the question. – Mark Oct 21 at 10:36

3 Answers

vote up 0 vote down

You can make the UISearchDisplayController use your own UITableView subclass by setting its searchResultsTableView property to such a table.

To alter the segmented view and the keyboard, you'll have to use private methods and your app probably won't make it to the App Store.

link|flag
I know but that won't fix the 'white flash' appearing, luckely there are some work-arounds for that – Mark Oct 21 at 10:37
Hi Mark, how do you work around this? This is very annoying. – Boon Oct 26 at 3:58
vote up 1 vote down

alt text

I was able to change the segmented control by a sort-of hack code:

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
for (UIView *subview in self.view.subviews) {
	for (UIView *subview2 in subview.subviews) {
		if ([subview2 isKindOfClass:[UISegmentedControl class]]) {
			UISegmentedControl *segmentedControl = (UISegmentedControl *)subview2;
			segmentedControl.tintColor = [UIColor blackColor];
			segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar;
		}			
	}
}}

However the buttons are HUGE, how could I fix it so they are just as pretty as the original?

link|flag
vote up 1 vote down

alt text

I was able to customize the tableview by using the following code:

- (void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView {
tableView.backgroundColor = [UIColor colorWithRed:(19.0 / 255.0) green:(19.0 / 255.0) blue:(19.0 / 255.0) alpha:1.0];
tableView.separatorColor  = [UIColor blackColor]; }

However when you touch the cancel button, the interface will flash white before going back to the original tableview. How can this be fixed?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.