我有一个搜索框。当用户按下它执行的键盘和IBAction时,我想这样做。如何将该键链接到 - (IBAction)方法。
答案 0 :(得分:2)
按下搜索按钮时会触发一个委托方法
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
//CALL YOUR IBACTION METHOD HERE
}
- 快乐编码
答案 1 :(得分:0)
(BOOL)textFieldShouldReturn:(UITextField *)textField{
[self yourButtonName:nil];
}