UIActionSheet 应该从弹出窗口中调用,但从主屏幕底部显示

Posted

技术标签:

【中文标题】UIActionSheet 应该从弹出窗口中调用,但从主屏幕底部显示【英文标题】:UIActionSheet should be called from the popover but shown from the bottom of the main screen 【发布时间】:2013-12-17 09:35:23 【问题描述】:

我有一个 UIActionSheet 从显示在单元格中的弹出窗口中的按钮调用。当我使用 iPhone 时 - 从屏幕底部调用 UIActionSheet,但现在我需要为 iPad 转换 UI - 所以现在 VC 显示在弹出窗口中,UIActionSheet 也显示在弹出窗口中。发件人显示在弹出框时,是否也可以从 iPad 屏幕底部显示UIActionSheet

呈现UIActionSheet的代码是:

- (void) showActionSheet

    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil
                                                             delegate:self
                                                    cancelButtonTitle:@"Отмена"
                                               destructiveButtonTitle:nil
                                                    otherButtonTitles:@"Наличие несуществующего объекта", @"Некорректность значений атрибутов", nil];
    [actionSheet showInView:self.view];

【问题讨论】:

【参考方案1】:

用过[actionSheet showFromRect: popover.frame inView: self.view animated: YES];

它可能对你有用

【讨论】:

以上是关于UIActionSheet 应该从弹出窗口中调用,但从主屏幕底部显示的主要内容,如果未能解决你的问题,请参考以下文章

弹出窗口中的 UIActionSheet 布局错误

从弹出窗口在父窗口中提交表单?

从弹出窗口呈现视图

从弹出窗口中的 UISwitch 操作中隐藏 UIImageView (iPad)

从弹出窗口上的编辑文本中获取文本

如何从弹出窗口向 boxlayout 添加新标签?