0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

NSTableViewで選択された行のテキストが黒字になってしまう場合の対処法

Last updated at Posted at 2019-09-13

概要

  • 選択時のテキストの色が白色にならず黒色のままになる現象が起きた。
  • また10.14のみで発生。

非選択時

-w412

選択時(macOS 10.14)

Downloads 7

選択時(macOS10.13.6)

-w412

解決法

  • テキストの色をblackColorと指定していたのが原因。
  • セルのテキストnデフォルトで設定されているNSColor.controlTextColorを指定するのが良い。
  • 上記の画像の通り、10.14からNSColorの処理に変化があったのだろう。

-w1402

参考

今回使用したコード

  • レガシーなcell baseのテーブルビューです。
  • セルの表示時に呼ばれる以下のメソッドでテキストの色を設定します。
- (void)tableView:(NSTableView *)tableView
  willDisplayCell:(id)cell
   forTableColumn:(NSTableColumn *)tableColumn
              row:(NSInteger)row {

AppDelegate.m

# import "AppDelegate.h"
# import "TableViewController.h"

@interface AppDelegate ()
@property (weak) IBOutlet NSWindow *window;
@property TableViewController *tableViewController;
@end

@implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    // Insert code here to initialize your application
    TableViewController *tableViewController = [[TableViewController alloc] init];
    [tableViewController showWindow:self];
    _tableViewController = tableViewController;
}


- (void)applicationWillTerminate:(NSNotification *)aNotification {
    // Insert code here to tear down your application
}

@end

TableViewController.m

//
//  TableViewController.m
//  NSTableView_SelectedRowTextColor

# import "TableViewController.h"

@interface TableViewController ()<NSTableViewDelegate, NSTableViewDataSource>
@property (weak) IBOutlet NSTableView *tableView;
@property NSArray<NSString *> *tableViewData;
@end

@implementation TableViewController

- (id)init {
    if (self = [super initWithWindowNibName:[self className] owner:self]) {
        
        _tableViewData = @[@"NSColor.blackColor",
                           @"NSColor.controlTextColor",
                           @"NSColor.textColor",
                           @"NSColor.labelColor"];
    }
    return self;
}

- (void)windowDidLoad {
    [super windowDidLoad];
    
    // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file.
}

// MARK:- NSTableView Delegate
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView {
    return _tableViewData.count;
}

- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
    return _tableViewData[row];
}

// テーブルビューの内容表示前に呼ばれる
- (void)tableView:(NSTableView *)tableView
  willDisplayCell:(id)cell
   forTableColumn:(NSTableColumn *)tableColumn
              row:(NSInteger)row {
    [cell setTextColor:NSColor.blackColor];
    switch (row) {
        case 0:
            [cell setTextColor:NSColor.blackColor];
            break;
        case 1:
            [cell setTextColor:NSColor.controlTextColor];
            break;
        case 2:
            [cell setTextColor:NSColor.textColor];
            break;
        case 3:
            [cell setTextColor:NSColor.labelColor];
            break;
        default:
            break;
    }
}
@end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?