UISegmentedControl 上的 Arrow UIPopoverController

发布于 2024-10-06 00:14:46 字数 399 浏览 3 评论 0原文

我在右侧栏按钮项目上有一个带有 4 个按钮的分段控件。现在这段代码可以工作:

[actionSheet showFromBarButtonItem:self.switchView.navigationItem.rightBarButtonItem animated:YES];

但是 UIActionSheet(弹出窗口)的箭头没有指向正确的方向。所以我可能必须使用这个:

[actionSheet showFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated];

但我不知道如何正确使用它..我尝试了不同的方法,但没有好的结果。有人有这个吗?

谢谢

I have a segmentedcontrol on the rightbarbuttonitem with 4 buttons. Rightnow this code works:

[actionSheet showFromBarButtonItem:self.switchView.navigationItem.rightBarButtonItem animated:YES];

But the arrow of the UIActionSheet (popover) doesn't point right. So i probably have to use this:

[actionSheet showFromRect:(CGRect)rect inView:(UIView *)view animated:(BOOL)animated];

But i don't know how to use it properly.. I tried different approaches but with no good results. Someone having this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

花想c 2024-10-13 00:14:46

你应该这样做。

[actionSheet showFromRect:self.switchview.frame inView:self.view animated:YES];

You should do it like.

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