我有 4 个自定义单选按钮,单击时会更改消息。该消息处理搜索词。我有一个搜索按钮。有谁知道根据单击哪个单选按钮使搜索按钮激活不同的操作以将您带到不同的页面的方法?
有点像让一个搜索按钮连接到 4 个不同的操作并启用/禁用单选按钮的操作。
如果有人知道如何只用 2 个按钮做到这一点,那么我可以弄清楚 4 个按钮的逻辑。
这是我的新工作代码:
//搜索按钮
-(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;
}˚