带有隐藏菜单的按钮 iPhone
我需要实现一个按钮,该按钮将显示在 UIView 或 MKMapView 上应用程序的右上角。单击该按钮后,应该会出现一个组合,用户可以选择类别。
我怎样才能做到这一点?
I need to implement a single button which would be shown at upper right corner of the application on UIView or MKMapView. On clicking that button a combo should come up and user would be able to select the categories.
How can I achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须创建一个 UIButton 并将其添加为 UIView 的子视图(例如,如果您的视图链接到 UIViewController,则在 viewDidLoad 方法中)。
然后添加一个名为“buttonClicked:”的方法,该方法采用 id 参数(通常是发送者,在本例中为 showButton)。
要可视化类别,您可以遵循两种不同的方式:
UITableViewController 允许您拥有一个类别列表,然后选择其中一个。
PS检查XCode中的代码,因为我是手写的(没有XCode)
You have to create an UIButton and add it as a subview of your UIView (for example in viewDidLoad method if your view is linked to an UIViewController).
Then you add a method, called buttonClicked: that takes an id parameter (usually the sender, showButton in this case).
To visualize the categories you can follow two different ways:
The UITableViewController allows you to have a list of categories and then select one of them.
P.S. Check the code in XCode because I've written by hand (without XCode)