gpt4 book ai didi

objective-c - Bool 不可转换为 ObjCBool

转载 作者:可可西里 更新时间:2023-10-31 23:45:34 24 4
gpt4 key购买 nike

我在执行以下操作时遇到此错误:

return (index == self.pagesTitles.count || index == NSNotFound) ? nil : viewControllerAtIndex(++index)

Bool 不能转换为 ObjCBool​​

我想做一个三元运算符来简化事情。有什么问题吗?

最佳答案

确保您正确指定了返回对象的类型。你的情况是 UIViewController 吗?

func myMethod() -> UIViewController? {
return (index == self.pagesTitles.count || index == NSNotFound) ? nil : viewControllerAtIndex(++index)
}

关于objective-c - Bool 不可转换为 ObjCBool,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25563884/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com