如何在 Objective c iPhone 的导航栏中添加按钮下拉列表
我对 Objective C 和 iPhone 应用程序非常陌生。我正在 xcode 中创建一个项目来制作 iPhone 的应用程序。我需要在该应用程序的导航栏中添加一个下拉列表。我添加了其他按钮,如后退按钮、刷新按钮。但现在我需要一个按钮/链接的下拉列表。请告诉我该怎么做。
提前致谢
I am very new to objective c and iPhone applications. I am creating a project in xcode to make an application for iPhone. I need to add a drop down list in the navigation bar of that application. I have added other buttons to it like back button, refresh button. But Now I require a drop down list of buttons/links to it. plz tell me how can I do this.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以试试这个。我正在扩展 sabby 的解决方案。就在您添加带有按钮的视图(如垂直按钮列表)时。使用此代码
you can try this. I'm expanding sabby's solution. just when you add the view with button like a vertical list of buttons. use this code
好吧,我认为您可以使用自定义,获取一个视图并将按钮放在该视图上,只要您想要的数量。然后您需要通过单击导航栏上的按钮来调用该视图。
这将解决您的问题。
Well i think you can use customization,take a view and put the buttons on that view,as many as you want.Then you need to call that view on the click of the button on your navigation bar.
This will resolve your problem.