Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Xcode 4.6。我需要在 2 列中放置 5 个单选按钮,在第一列中放置 3 个,在第二列中放置两个。我没有足够的空间将它们放在一栏中。如果我选择 2 列,我会得到偶数个按钮。我确定我错过了一些非常简单的东西。
您没有显示如何填充单元格,但您只需要在最后一个位置添加一个空白单元格:
NSCell *blankCell = [[NSCell alloc] init]; blankCell.enabled = NO; [_matrixView putCell:blankCell atRow:row column:column];