作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
只有当 >= 8.0 时,我才能开始下面的方法?它在 TabBarController 类中。
let floatVersion = (UIDevice.currentDevice().systemVersion as NSString).floatValue
func tabBarController(tabBarController: UITabBarController, animationControllerForTransitionFromViewController fromVC: UIViewController, toViewController toVC: UIViewController) -> UIViewControllerAnimatedTransitioning? {
// if ( floatVersion >= 8.0) {
let transitioningObject: TransitioningObject = TransitioningObject()
transitioningObject.tabBarController = self
return transitioningObject
//}
}
最佳答案
由于您的方法返回可选的 UIViewControllerAnimatedTransitioning,如果版本低于 8.0,您可以返回 nil
func tabBarController(tabBarController: UITabBarController, animationControllerForTransitionFromViewController fromVC: UIViewController, toViewController toVC: UIViewController) -> UIViewControllerAnimatedTransitioning? {
if ( floatVersion >= 8.0) {
let transitioningObject: TransitioningObject = TransitioningObject()
transitioningObject.tabBarController = self
return transitioningObject
}else{
return nil
}
}
关于ios - 如何在 iOS7 中不启动方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28612184/
我是一名优秀的程序员,十分优秀!