如何在 Objective c iPhone 的导航栏中添加按钮下拉列表

发布于 2024-11-10 13:17:52 字数 158 浏览 3 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把人绕傻吧 2024-11-17 13:17:52

你可以试试这个。我正在扩展 sabby 的解决方案。就在您添加带有按钮的视图(如垂直按钮列表)时。使用此代码

CGRect customViewFrame = yourCustomView.frame;
customViewFrame.size.height = 0;
yourCustomView.frame = customViewFrame;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
customViewFrame.size.height = your_desired_height;
yourCustomView.frame = customViewFrame;
[UIView commitAnimations];

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

CGRect customViewFrame = yourCustomView.frame;
customViewFrame.size.height = 0;
yourCustomView.frame = customViewFrame;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
customViewFrame.size.height = your_desired_height;
yourCustomView.frame = customViewFrame;
[UIView commitAnimations];
吾性傲以野 2024-11-17 13:17:52

好吧,我认为您可以使用自定义,获取一个视图并将按钮放在该视图上,只要您想要的数量。然后您需要通过单击导航栏上的按钮来调用该视图。
这将解决您的问题。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文