自定义UISearchBar
我有一个具有以下类的应用程序:
@interface SearchViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate>
@property (nonatomic, retain) IBOutlet UISearchBar *search;
如何自定义 UISearchBar?我想添加一个分段按钮以允许搜索选项(和/或/短语)。
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).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
这为您提供了标准的分段搜索控件。您可以使用
search.selectedScopeButtonIndex
来检查其状态。Try this:
That gives you the standard segmented control for search. You can use
search.selectedScopeButtonIndex
to check its state.