前端之家收集整理的这篇文章主要介绍了
ios – swift中的.successor()是什么?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人能解释someVar.successor()是什么吗? Apple文档说“返回自己之后的下一个连续值.”.我不明白它的实现意义.
谢谢.
我们可以在索引上
调用successor(),而不是
添加1.
例如:
func naturalIndexOfItem(item: Item) -> Int? {
if let index = indexOfItem(item) {
return index + 1
} else {
return nil
}
}
等于这个:
func naturalIndexOfItem(item: Item) -> Int? {
if let index = indexOfItem(item) {
return index.successor()
} else {
return nil
}
}
原文链接:https://www.f2er.com/iOS/330654.html