无法关闭的Modal uiactionsheet ipad

发布于 2024-10-24 05:09:33 字数 80 浏览 1 评论 0原文

如何在 iPad 上创建 UIActionsheet,而不通过点击操作表周围的区域将其关闭?这是 iPhone 上的默认设置,iPad 上祝你好运

How do I create an UIActionsheet on the iPad without having it dismissed by tapping the area around the action sheet? This is default on the iPhone, any luck on the iPad

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

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

发布评论

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

评论(1

错爱 2024-10-31 05:09:33

我遇到了同样的问题,我想出了一个解决方法,而不是一个解决方案。

-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    NSLog(@"%d",buttonIndex);
    switch (buttonIndex) {
        case -1:
            [self presentOptions];
    //.... more cases here
    }
}

当用户点击UIActionSheet外部时,您会得到-1作为buttonIndex。在这种情况下,我再次呈现 UIActionSheet(通过调用仅呈现操作的方法 presentOptions)。从用户的角度来看,您可以看到 UIActionSheet 上有一个微小的闪烁:几乎不明显。我想说,这不是一个完美的解决方案,但可以接受的解决方案。

I faced the same problem and I came up with a workaround more than a solution.

-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    NSLog(@"%d",buttonIndex);
    switch (buttonIndex) {
        case -1:
            [self presentOptions];
    //.... more cases here
    }
}

When the user taps outside the UIActionSheet you get a -1 as buttonIndex. In that case I presented the UIActionSheet again (by calling my method presentOptions that just presents the action). From the users perspective you can see a tiny blink un the UIActionSheet: hardly noticeable. Not a perfect solution but and acceptable workaround I'd say.

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