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.
如何知道在 NSMatrix 中选择了多少行和列?我尝试了很多东西,但它不起作用。
我想过首先通过调用selectedCells方法来获取选定的单元格,NSMatrix但后来我不知道该怎么做。我应该在每个单元格实例中的某个位置保存它的位置(行/列)在NSMatrix?还有其他解决方案吗?
selectedCells
NSMatrix
您可以通过执行以下操作找出选择了多少:
NSArray *selectedArray = [myMatrix selectedCells]; NSUInteger selectedNum = [selectedArray count];
myMatrix你的NSMatrix实例在哪里。
myMatrix