Ipad/Iphone UIActionSheet

发布于 2024-08-30 01:59:06 字数 405 浏览 5 评论 0原文

我只在这里发过几次帖子,人们的回复非常迅速且非常有帮助,所以谢谢。

我尝试在我的 iPad 应用程序中使用 UIActionsheet 元素。但为了混淆问题,我也使用 Cocos2d。

但这是我的问题。

如果不使用 cocos2d 编写操作表,您将使用以下代码。

[actionSheet showInView:self.view];

然而,因为我使用 cocos2d 并且没有这样的视图,所以我唯一能想到的参考就是窗口。但这位于 appdelegate 类中。

我尝试过

[actionSheet showInView:self.Window];

,但出现错误,

有什么帮助吗?

Ive only posted on here a couple of times and people have been very quick and very helpful when responding so thanks.

Im trying to use the UIActionsheet element in my Ipad application. But just to confuse matters im using Cocos2d aswell.

But here is my problem.

If coding the actionsheet with out cocos2d you would use the following code.

[actionSheet showInView:self.view];

However because im using cocos2d and there is no views as such the only thing i can think of to reference is the window.. But this is located in the appdelegate class.

ive tried

[actionSheet showInView:self.Window];

and i get errors

any help?

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

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

发布评论

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

评论(1

雨轻弹 2024-09-06 01:59:06

你尝试过吗

[actionSheet showInView:self.window];
//---------------------------^ small "w"

?如果这不起作用,也请尝试

[actionSheet showInView:[UIApplication sharedApplication].keyWindow];

Have you tried

[actionSheet showInView:self.window];
//---------------------------^ small "w"

? If this doesn't work, try also

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