我不知道为什么,但Xcode不喜欢动画的任何Bool选项并显示此错误 –
‘Bool’ is not convertible to ‘BooleanliteralConvertible’
(如果你看一下这个函数本身,你会看到它完全需要动画的Bool)
var startVC = self.vIEwControllerAtIndex(indexImage) as ContentVIEwControllervar vIEwControllers = NSArray(object: startVC)self.pageVIEwContorller.setVIEwControllers(vIEwControllers as [AnyObject],direction: UIPageVIEwControllerNavigationDirection.Forward,animated: true,completion: nil) 'Bool' is not convertible to 'BooleanliteralConvertible'
有谁知道,我该怎么解决?
谢谢.
解决方法 Swift很困惑,并给你一个不正确的错误信息.问题是第一个参数的类型为[UIVIEwController] ?,因此以下内容应该有效:self.pageVIEwContorller.setVIEwControllers(vIEwControllers as? [UIVIEwController],completion: nil)
或者甚至更好,将vIEwControllers声明为[UIVIEwController]类型,然后在调用中不需要转换:
let vIEwControllers:[UIVIEwController] = [startVC]self.pageVIEwContorller.setVIEwControllers(vIEwControllers,completion: nil)总结
以上是内存溢出为你收集整理的ios – Swift 2:“Bool”不能转换为’BooleanLiteralConvertible’全部内容,希望文章能够帮你解决ios – Swift 2:“Bool”不能转换为’BooleanLiteralConvertible’所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)