我正在开发一个应用程序,该应用程序在OutlineView上显示数据列表。控制器接收通知,告诉它更改一行的状态NSImageCell的图像。问题是我无法刷新OutlineView行上的单元格。
到目前为止,我已经在以下代码中尝试了每个选项。
id dataCell = [self dataCellWithID:@"cellID" andRow:rowNumber];
if (dataCell && [dataCell isKindOfClass:[NSImageCell class]]) {
//OPTION 1
NSImageCell *statusIconCell = (NSImageCell *)dataCell;
[statusIconCell setImage:[NSImage imageNamed:[self syncIconNameForStatus: syncState]]];
//OPTION 2
[dataCell setObjectValue:[NSImage imageNamed:[self syncIconNameForStatus: syncState]]];
[dataCell reloadData];
//OPTION 3
NSIndexSet *rowIndex = [NSIndexSet indexSetWithIndex:listRow];
NSIndexSet *columnIndex = [NSIndexSet indexSetWithIndex:[outlineView columnWithIdentifier:@"cellID"]];
[outlineView reloadDataForRowIndexes:rowIndex columnIndexes:columnIndex];
}
有什么想法吗?
提前谢谢。
米基万。
找到了解决方案!
id dataCell = [self dataCellWithID:@"cellID" andRow:listRow];
if (dataCell && [dataCell isKindOfClass:[NSImageCell class]]) {
NSImageCell *statusIconCell = (NSImageCell *)dataCell;
[statusIconCell setImage:[NSImage imageNamed:[self syncIconNameForStatus:syncState]]];
[[statusIconCell controlView] setNeedsDisplay:YES];
}