iPad 应用程序显示 Actionsheet,箭头方向向下而不是向上

发布于 2024-10-23 12:15:21 字数 808 浏览 2 评论 0原文

当在视图中的任何点显示 actionSheet 时,它会显示一个向下方向的箭头(在操作表下方),即使 actionSheet 在视图中有足够的空间来显示“向上”箭头。
在 iPad 联系人应用程序中,当编辑联系人并按个人资料照片中的“编辑”时,会出现带有向上箭头的操作表,因此“向上”应该是标准的。

以下代码在 iOS 3.2 上导致“向上”箭头,在 iOS 4.2 和 4.3 上导致“向下”箭头。我尝试了不同的矩形和视图。

actionSheetXY = [[UIActionSheet alloc] initWithTitle:nil
                                            delegate:self
                                   cancelButtonTitle:NSLocalizedString(@"cancel",nil) 
                              destructiveButtonTitle:nil
                                   otherButtonTitles:NSLocalizedString(@"test",nil),nil];
actionSheetXY.actionSheetStyle = UIActionSheetStyleDefault;
actionSheetXY.delegate = self;
[actionSheetXY showFromRect:CGRectMake(100,200,320,320) inView:self.view animated:YES];

有没有办法获得向上的箭头?

When displaying an actionSheet at any point in a view it displays an arrow with direction down (below the actionsheet) even though the actionSheet would have enough space in the view to display an "up" arrow.
In the iPad contacts app when editing a contact and pressing on "edit" in the profile photo an actionSheet with arrow direction up appears, so "up" should be standard.

Following code leads on iOS 3.2 to an "up" arrow, on iOS 4.2 and 4.3 to a "down" arrow. I tried different Rects and Views.

actionSheetXY = [[UIActionSheet alloc] initWithTitle:nil
                                            delegate:self
                                   cancelButtonTitle:NSLocalizedString(@"cancel",nil) 
                              destructiveButtonTitle:nil
                                   otherButtonTitles:NSLocalizedString(@"test",nil),nil];
actionSheetXY.actionSheetStyle = UIActionSheetStyleDefault;
actionSheetXY.delegate = self;
[actionSheetXY showFromRect:CGRectMake(100,200,320,320) inView:self.view animated:YES];

Is there a way to get an arrow with direction up?

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

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

发布评论

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

评论(1

掌心的温暖 2024-10-30 12:15:21

箭头将始终指向您定义的这个矩形: CGRectMake(100,200,320,320)

如果您希望它指向一个特定位置,则必须将此矩形更改为您希望箭头指向的点。

如果您希望它指向您的编辑按钮,您需要将该行更改为

[actionSheetXY showFromRect:[editButton frame] inView:self.view animated:YES];

the arrow will always point to this rectangle you have defined: CGRectMake(100,200,320,320)

if you want it to point to one particular place, you have to change this rectangle to the point you want the arrow to point.

If you want it to point to your edit button, you need to change the line to

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