我有一个具有以下课程的应用程序:

@interface SearchViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate>
@property (nonatomic, retain) IBOutlet UISearchBar *search;


如何自定义UISearchBar?我想添加一个分段按钮以允许搜索选项(和/或/短语)。

最佳答案

尝试这个:

search.showsScopeBar = YES;
search.scopeButtonTitles = [NSArray arrayWithObjects:@"Button",@"Titles",@"Go",@"Here",nil];


这为您提供了标准的分段控件进行搜索。您可以使用search.selectedScopeButtonIndex来检查其状态。

关于iphone - 自定义的UISearchBar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2473612/

10-13 09:32