This question already has answers here:
.toInt() removed in Swift 2?
(5个答案)
三年前关闭。
我刚升级到Swift 2.0,不确定这行代码为什么不起作用。我知道在swift2.0中toInt()被删除了,但我不知道如何更新这行代码,使它在swift2.0中起作用。有什么建议吗?
老台词:
我试过这一行,但没有成功:
(5个答案)
三年前关闭。
我刚升级到Swift 2.0,不确定这行代码为什么不起作用。我知道在swift2.0中toInt()被删除了,但我不知道如何更新这行代码,使它在swift2.0中起作用。有什么建议吗?
老台词:
followers.setTitle((followers.currentTitle!.toInt()! - 1).description, forState: UIControlState.Normal)
我试过这一行,但没有成功:
followers.setTitle((followers.currentTitle!.Int()! + 1).description, forState: UIControlState.Normal)
最佳答案
读取错误消息toInt()
不可用:使用初始值设定项
方法
Int(followers.currentTitle!)!
关于ios - Swift 2 toInt()无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35066794/
10-11 07:52