我可以在一个 ViewController 中有两个 UISearchbar 吗?
基本上我有一个 map View ,我想将源和目标 UISearchBar 放在顶部。
现在,如果我添加两个 UIISearchBar 和两个 UISearchDisplayControllers ,我如何确定它在委托(delegate)函数中使用的是哪个搜索栏?
我原本打算只使用一个 UISearchBar ,它会先获取源,然后是目标,但现在计划显示 2 个搜索栏。
我用一个搜索栏就能搞定一切。
Best Answer-推荐答案 strong>
您必须将两个 UISearchBars 都存储在 IBOutlet 中,例如
@property (nonatomic, weak) IBOutlet UISearchBar *firstSearchBar;
@property (nonatomic, weak) IBOutlet UISearchBar *secondSearchBar;
然后在你的代表中做
- (void)searchBarBookmarkButtonClickedUISearchBar *)searchBar
{
if (searchBar == self.firstSearchBar) {
// Do something
} else {
// Do something else
}
}
当你必须处理多个 UIAlertView、UITableView、UICollectionView 等时,也可以使用这种方法。
关于ios - 我可以在一个 ViewController 中有两个 UISearchBar 吗?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/22087858/
|