Customized UISearchBar
Posted
by Matt
on Stack Overflow
See other posts from Stack Overflow
or by Matt
Published on 2010-03-18T21:58:21Z
Indexed on
2010/03/18
22:01 UTC
Read the original article
Hit count: 950
I've got an app with the following class:
@interface SearchViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate>
@property (nonatomic, retain) IBOutlet UISearchBar *search;
How can I customize UISearchBar? I'd like to add a segmented button to allow for search options (and/or/phrase).
© Stack Overflow or respective owner