gpt4 book ai didi

arrays - 从indexpath.row中的数组获取特定值

转载 作者:行者123 更新时间:2023-11-30 13:01:23 25 4
gpt4 key购买 nike

我正在尝试从汽车制造数组中获取第二个和第三个值并返回到下面的函数中。我努力了cell.title.text = carmake[1...2][indexPath.row]cell.title.text = carmake[indexPath.[1...2]] code> 但没有一个是正确的。请帮助我

carmake = ["hi","hello","how are you","i am good"]

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = viewcontrol.dequeueReusableCellWithReuseIdentifier("cell", forIndexPath: indexPath) as! jobtypeCollectionViewCell

cell.title.text = carmake[indexPath.row]
return cell
}

最佳答案

如果你想组合它们,你可以尝试:

cell.title.text = carmake[1] + carmake[2]

关于arrays - 从indexpath.row中的数组获取特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39881198/

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