iPhone SDK 4 quot;Half curl page transitionquot;(iPhone SDK 4“半卷曲页面过渡)
问题描述
在史蒂夫·乔布斯今年早些时候发布的 iPhone SDK 4 主题演讲中,其中一张幻灯片显示半卷曲页面过渡"是新 SDK 的一部分.
In Steve Jobs' keynote announcement of the iPhone SDK 4 earlier this year, one of the slides showed that a "Half curl page transition" was part of the new SDK.
我查看了 iOS API 文档,但似乎找不到这种转换.有谁知道它在哪里?
I've looked through the iOS API docs and I can't seem to find this transition. Does anyone know where it is?
推荐答案
不是过渡,而是modalTransitionStyle.您可以在此处查看文档:https://developer.apple.com/documentation/uikit/uiviewcontroller/1621388-modaltransitionstyle
It's not a transition, but a modalTransitionStyle. You can check the docs here: https://developer.apple.com/documentation/uikit/uiviewcontroller/1621388-modaltransitionstyle
如果创建一个新的UIViewController,将其modalTransitionStyle设置为UIModalTransitionStylePartialCurl,然后presentModalViewController:animated:它,你会得到想要的半卷页"效果.
If you create a new UIViewController, set its modalTransitionStyle to UIModalTransitionStylePartialCurl, and then presentModalViewController:animated: it, you'll get the desired "half curl page" effect.
这篇关于iPhone SDK 4“半卷曲页面过渡"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone SDK 4“半卷曲页面过渡"
基础教程推荐
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
