我有一个自定义类“size”作为RestFull调用的对象。结果填充由NSArrayController控制的数组。然后TableView将绑定到IB中的此控制器。所有工作都是预期的。我将实现的是根据大小改变NSViewCell中的颜色。例如:尺寸“M”为红色,“S”为绿色,“XXL”为棕色。
·H
@interface RecordSize : NSObject
@property (readwrite, retain) NSString *key;
@property (readwrite, retain) NSString *size;
-(id)initWithName:(NSDictionary *)row;
@end
的.m
#import "RecordSize.h"
@implementation RecordSize
@synthesize key = _key, size = _size;
-(id)initWithName:(NSDictionary *)row {
self = [super init];
if (self) {
_key = [row valueForKey:@"id"];
_size = [row valueForKey:@"text"];
}
return self;
}
@end
委托类构造函数:
- (id)init {
if (self) {
self = [super init];
//*********** TableViev
NSString * urlString = @"http://xxxxx/restfull/size/";
RestateC *restSize = [[RestateC alloc]initWithName:urlString];
//add Delegate
restSize.delegate = self;
NSArray* aTmp = [restSize syncronize];
NSMutableArray *thingSize = [[NSMutableArray alloc]init];
for (NSDictionary *row in aTmp)
{
RecordSize *item = [[RecordSize alloc] initWithName:row];
[thingsSize addObject: item ];
}
self.aRecordSize = thingsRecordSize;
_sizeTableView.delegate = self;
}
return self;
}
基于视图的单元格中的NSTablecolumn方法
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
{
NSTableCellView *result = [tableView makeViewWithIdentifier:tableColumn.identifier owner:self];
if( [[tableColumn identifier] isEqual:@"AGONIA"] ) {
NSLog(@"IDENTITY %@", [tableColumn identifier]);
if ([[result.textField stringValue] isEqualToString :@"M"]) {
result.textField.textColor = [NSColor redColor];
}
if ([[result.textField stringValue] isEqualToString :@"S"]) {
result.textField.textColor = [NSColor greenColor];
}
if ([[result.textField stringValue] isEqualToString :@"XXL"]) {
result.textField.textColor = [NSColor brownColor];
}
}
else result.textField.textColor = [NSColor blackColor];
return result;
}
所以该方法是从委托中正确调用的,但逻辑不起作用。
任何帮助都很受欢迎。
答案 0 :(得分:1)
您也可以尝试使用NSAttributedString。
答案 1 :(得分:0)
所以解决方案已经到了。最初的错误来自搜索NSTableCellView *结果中的值。结果不包含任何值:它们仅用于显示值。
最后:
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
NSTableCellView *result = [tableView makeViewWithIdentifier:tableColumn.identifier owner:self];
if( [[tableColumn identifier] isEqual:@"SizeColumn"] ) {
if ([[[_arrayInstance valueForKeyPath:@"sizes"]objectAtIndex:row] isEqualToString:@"M"]) {
NSLog(@"FIND: %@", [[_arrayInstance valueForKeyPath:@"sizes"]objectAtIndex:row]);
[result.textField setTextColor:[NSColor blueColor]];
return result;
}
if ([[[_arrayInstance valueForKeyPath:@"sizes"]objectAtIndex:row] isEqualToString:@"XXL"]) {
NSLog(@"FIND: %@", [[_arrayInstance valueForKeyPath:@"testo"]objectAtIndex:row]);
[result.textField setTextColor:[NSColor redColor]];
return result;
}
}
return result;
}
答案 2 :(得分:-1)
如果要将背景颜色设置为NSTableCellView,则应使用以下界面。
NSColor *bgcolor = nil;
if ([[result.textField stringValue] isEqualToString :@"M"]) {
bgcolor = [NSColor redColor];
}
if ([[result.textField stringValue] isEqualToString :@"S"]) {
bgcolor = [NSColor greenColor];
}
if ([[result.textField stringValue] isEqualToString :@"XXL"]) {
bgcolor = [NSColor brownColor];
}
result.layer.backgroundColor = bgcolor;
参考Set Background colour on NSTableCellView
在您的代码中,您尝试在单元格中为文本着色 - 这是您的正确要求 - 我看不到您将文本设置为单元格。