在 iPad 应用程序的中心显示操作表

Posted

技术标签:

【中文标题】在 iPad 应用程序的中心显示操作表【英文标题】:Show actionsheet in center for iPad app 【发布时间】:2013-01-08 07:48:18 【问题描述】:

在视图中心显示actionsheet,而不是在popover 中显示iPad appAppstore 允许这样做吗?

【问题讨论】:

【参考方案1】:

试试这个:-

UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"options" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Option 1", @"Option 2", nil];
popupQuery.actionSheetStyle = UIActionSheetStyleBlackOpaque;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
   
        //popupQuery.
        [popupQuery showInView:self.view];
   

是的,它得到了 Apple 的批准

希望对你有帮助

【讨论】:

以上是关于在 iPad 应用程序的中心显示操作表的主要内容,如果未能解决你的问题,请参考以下文章

ipad微信小程序全屏设置

ipad 上的操作表

当用户触摸弹出框外部时,禁用 ipad 上的 ActionSheet 关闭

在 iPad 上隐藏 UIActionSheet

操作表中的 Pickerview 在 iPhone 中显示,但在 iPad 中不显示

为啥应用程序在 iPad React Native 中显示黑色空间