0

我目前正在开发一个应用程序,它允许用户按标题、类别、价格和位置进行研究。

to be more user-friendly, i'm trying to create a sidemenu, which contains all category under the form of button, and when the button is select, the textfield will take the name of the category. 此外,我希望在点击类别文本字段时出现侧边菜单。

我使用 SWRearViewController 作为侧边菜单,但我不知道如何实现上面列出的功能。

这是我要创建的示例:

侧边菜单按钮

谢谢你的帮助 !

4

1 回答 1

0

您应该为所有类别按钮设置回调。一旦这些被触发,您应该获取类别文本字段的实例并设置其文本,例如

func artsCategoryTapped(aButton: UIButton) {
categoryTextField.text = "Arts"
}

我不确定它是如何SWRearViewController工作的,但如果你知道如何触发它,你可以为你的类别 textField 设置委托方法。一旦你知道有人开始编辑它,你应该显示你的SWRearViewController

于 2015-06-08T13:24:53.227 回答