ios – Swift 2:“Bool”不能转换为’BooleanLiteralConvertible’

ios – Swift 2:“Bool”不能转换为’BooleanLiteralConvertible’,第1张

概述我在XCode 6中创建了一个应用程序.今天我下载了XCode 7,它已将我的应用程序更新为 Swift 2.有很多错误,但现在只有一个我无法解决. 我不知道为什么,但Xcode不喜欢动画的任何Bool选项并显示此错误 – ‘Bool’ is not convertible to ‘BooleanLiteralConvertible’ (如果你看一下这个函数本身,你会看到它完全需要动画的Bool) 我在XCode 6中创建了一个应用程序.今天我下载了XCode 7,它已将我的应用程序更新为 Swift 2.有很多错误,但现在只有一个我无法解决.
我不知道为什么,但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’所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1098338.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存