I have an NSTableView where I change the row height with the following code:
- (CGFloat)tableView:(NSTableView *)tableView heightOfRow:(NSInteger)row { return 32; }
The problem is that my text cells are still aligned with the top of the cell, which makes it inconvenient. I could not understand how to vertically center it. Has anyone else found a solution?
cocoa nstableview
Kyle
source share