gpt4 book ai didi

ios - CollectionView 中的 Swift 2.3 IndexPath 错误

转载 作者:行者123 更新时间:2023-11-28 10:17:04 25 4
gpt4 key购买 nike

您好,我对 iOS 有点陌生,而且速度很快。我最近切换到 swift 2.3,现在我收到这个错误

Use of undeclared type 'IndexPath'

对于这个方法

override func collectionView(collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell 

有什么想法吗??

最佳答案

函数参数应该是NSIndexPath 而不是IndexPath。 Xcode 8+ 使用 Swift 3.0 的文档和代码完成。

Swift 2.3 语法:

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell

Swift 3.0 语法:

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath)

关于ios - CollectionView 中的 Swift 2.3 IndexPath 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40089708/

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