我需要在 beginAppearanceTransition:animated:
子类中使用 UIViewController
,该子类通过自定义动画转换实现 Controller 包含。我至少需要支持 iOS5。
Apple docs 说的方法是:
然而 UIViewController.h 的方法标记为:
我希望文档是错误的。谁能给我一个明确的答案,我是否可以在 iOS5 中调用它?
最佳答案
我向 Apple 提交了一份关于这种差异的错误报告,并得到了这些方法在 iOS 5.0 中可用的回应。标题是正确的,文档是错误的。我已经提交了另一份报告,要求更新文档...
这些方法已添加到 iOS 6 SDK 中的公共(public) header 中,但可用且可在运行 iOS 5.0 的设备上使用。
更新(2013 年 8 月 28 日)
documentation 已更新以显示 beginAppearanceTransition:animated:
和 endAppearanceTransition
在 iOS 5.0 上可用。
关于ios - 是 UIViewController 的 beginAppearanceTransition :animated: method available in iOS5,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15715657/