我有4个自定义单选按钮,可在单击时更改消息。该邮件涉及搜索字词。我有一个搜索按钮。有没有人知道如何让搜索按钮激活一个不同的动作,根据点击哪个单选按钮将你带到另一个页面?
有点像将一个搜索按钮连接到4个不同的操作,并启用/禁用单选按钮中的操作。
如果有任何人只知道如何使用2个按钮,那么我可以找出4个按钮的逻辑。
答案 0 :(得分:0)
这是我的新工作代码:
//搜索按钮
-(IBAction)showWineriesButton
{
btnSearchWineries.hidden=FALSE;
btnSearchGrapes.hidden=TRUE;
btnSearchWines.hidden=TRUE;
btnSearchReviews.hidden=TRUE;
}
-(IBAction)showGrapesButton
{
btnSearchWineries.hidden=TRUE;
btnSearchGrapes.hidden=FALSE;
btnSearchWines.hidden=TRUE;
btnSearchReviews.hidden=TRUE;
}
-(IBAction)showWinesButton
{
btnSearchWineries.hidden=TRUE;
btnSearchGrapes.hidden=TRUE;
btnSearchWines.hidden=FALSE;
btnSearchReviews.hidden=TRUE;
}
-(IBAction)showReviewsButton
{
btnSearchWineries.hidden=TRUE;
btnSearchGrapes.hidden=TRUE;
btnSearchWines.hidden=TRUE;
btnSearchReviews.hidden=FALSE;
}˚