I would like to "pimp" my table view header It should get a height of 60.0.
I tried this:
myTableView.headerView!.frame.size.height = 60
It will be higher, but the "content" will keep the same size:
I would like to "pimp" my table view header It should get a height of 60.0.
I tried this:
myTableView.headerView!.frame.size.height = 60
It will be higher, but the "content" will keep the same size:
I will suggest assign frame instead of height.
NSRect frame = tableView.headerView.frame;
frame.size.height = 26;
tableView.headerView.frame = frame;