gpt4 book ai didi

objective-c - 如何增加 NSIndexPath

转载 作者:可可西里 更新时间:2023-11-01 03:37:56 25 4
gpt4 key购买 nike

我有一个数据情况,我想使用索引路径。当我遍历数据时,我想增加 NSIndexPath 的最后一个节点。到目前为止我的代码是:

int nbrIndex = [indexPath length];
NSUInteger *indexArray = (NSUInteger *)calloc(sizeof(NSUInteger),nbrIndex);
[indexPath getIndexes:indexArray];
indexArray[nbrIndex - 1]++;
[indexPath release];
indexPath = [[NSIndexPath alloc] initWithIndexes:indexArray length:nbrIndex];
free(indexArray);

这感觉有点笨拙 - 有更好的方法吗?

最佳答案

你可以试试这个 - 也许同样笨重,但至少要短一点:

NSInteger newLast = [indexPath indexAtPosition:indexPath.length-1]+1;
indexPath = [[indexPath indexPathByRemovingLastIndex] indexPathByAddingIndex:newLast];

关于objective-c - 如何增加 NSIndexPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9636086/

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