无法关闭的Modal uiactionsheet ipad
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,我想出了一个解决方法,而不是一个解决方案。
当用户点击UIActionSheet外部时,您会得到-1作为buttonIndex。在这种情况下,我再次呈现 UIActionSheet(通过调用仅呈现操作的方法 presentOptions)。从用户的角度来看,您可以看到 UIActionSheet 上有一个微小的闪烁:几乎不明显。我想说,这不是一个完美的解决方案,但可以接受的解决方案。
I faced the same problem and I came up with a workaround more than a solution.
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.