行动表警告?

发布于 2024-11-10 13:46:31 字数 601 浏览 2 评论 0原文

我在我的应用程序中添加了一个操作表。我的应用程序是基于选项卡栏的应用程序。 我已经以这种方式添加了它

actionSheet = [[UIActionSheet alloc] initWithTitle:nil
                              delegate:self
                              cancelButtonTitle:@"Cancel"
                              destructiveButtonTitle:nil
                              otherButtonTitles:@"Take photo",@"Use existing photo",nil]; 
actionSheet.actionSheetStyle = UIBarStyleBlackTranslucent;
[actionSheet showFromTabBar:self.view];

,但它显示警告: 在此处输入图像描述

如何删除它。同时,我位于要在其中显示操作表的选项卡中。

I have added an action sheet in my app. My application is tab bar based app.
I have added this in this way

actionSheet = [[UIActionSheet alloc] initWithTitle:nil
                              delegate:self
                              cancelButtonTitle:@"Cancel"
                              destructiveButtonTitle:nil
                              otherButtonTitles:@"Take photo",@"Use existing photo",nil]; 
actionSheet.actionSheetStyle = UIBarStyleBlackTranslucent;
[actionSheet showFromTabBar:self.view];

But it shows warning: enter image description here

How can I remove it. As the same time I am in the tab in which I want to display the action sheet.

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

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

发布评论

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

评论(3

陌若浮生 2024-11-17 13:46:31
[actionSheet showFromTabBar:self.tabBarController.tabBar];

试试这个,它可能对你有帮助。

[actionSheet showFromTabBar:self.tabBarController.tabBar];

Try this ,it might help you.

倾城花音 2024-11-17 13:46:31

如果在选项卡中,不应该是 [actionSheet showFromTabBar:self.tabBarController.tabBar]; 吗?

If you are in the tab, shouldn't it be [actionSheet showFromTabBar:self.tabBarController.tabBar];?

早乙女 2024-11-17 13:46:31

如果您使用标签栏控制器,请像这样使用

[actionSheet showFromTabBar:(UITabBar *)[appDelegate.tabBarController view]];

If you are use tabbar controller then use like this

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