在史蒂夫·乔布斯今年早些时候发布的 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“半卷曲页面过渡"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!