有什么方法可以用Objective-C减去两个或多个NSUInteger值?
这是我的代码
__block NSUInteger *removedElementsCount = 0;
__block BOOL lastIsSuperElement = NO;
// Get the elements not collapsed
[_elements enumerateObjectsUsingBlock:^(id __nonnull obj, NSUInteger idx, BOOL * __nonnull stop) {
if (_isHidingSubElementsBlock(obj)){
//_collapseSubCellsAtIndexPathBlock(idx+_elementsOffset);
[elementToRemove addObject:(Task *)obj];
lastIsSuperElement = YES;
[indexPathToRemove addObject:[NSIndexPath indexPathForRow:(idx-removedElementsCount) inSection:0]];
removedElementsCount = 0;
} else if (lastIsSuperElement){
removedElementsCount++;
lastIsSuperElement = NO;
}
}];
当我尝试使用idx-removedElementsCount创建一个新的NSIndexPath时,出现以下错误:
HTReorderTableCells.m:231:75: Invalid operands to binary expression ('NSUInteger' (aka 'unsigned int') and 'NSUInteger *' (aka 'unsigned int *'))
我一直在寻找解决方案,但没有发现任何东西。
最佳答案
将NSInteger用于您的解决方案。
NSUInteger value1 = 5;
NSUInteger value2 = 3;
NSInteger subs = value1 - value2;
在您的代码中修复
removedElementsCount
的声明(删除*)关于ios - 如何减去两个NSUInteger变量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32479443/