私は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];
}
何か案は?
前もって感謝します。
ミキワン。