我是mac开发的新手。我在Objective c中升级了框架代码。我像这样更改代码。
NSEnumerator *e = (NSEnumerator *)[oOutlineView selectedRowIndexes];
NSNumber *cur;
while ((cur = [e nextObject]))
{
CKDirectoryNode *node = [oOutlineView itemAtRow:[cur intValue]];
[selection addObject:node];
fullPath = [node path];
}
其中 [oOutlineView selectedRowIndexes] 给出 NSIndexSet 对象。我无法运行此代码,因为目标是框架。这样好吗?请帮我。