UIModalTransitionStyle 和 UIModalPresentationStyle 有什么区别?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
UIModalTransitionStyle 用于指定模态表单如何转换到视图中。例如,它可以垂直进入、水平翻转或部分卷曲。
UIModalPresentationStyle 用于指定是否希望模态表单为全屏(基本上是 iPhone 使用的)或以其他方式(因此仅对 iPad 有意义)作为页面(全高,宽度是纵向模式屏幕宽度的大小) 、表单(部分宽度和部分高度)或当前上下文(即父容器使用的上下文)。
UIModalTransitionStyle is used to specify how the modal form transitions into view. For example, it can come in vertically, flip horizontal, or do a partial curl.
UIModalPresentationStyle is used to specified whether you want the modal form to be full screen (basically what iPhone uses) or otherwise (therefore only makes sense for iPad) as a page sheet (full height, width is the size of the portrait mode screen width), a form sheet (partial width and partial height) or current context (i.e. what the parent container uses).