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 方法的工作原理。 我实际上并没有得到以下链接中提到的内容:
NSMatrix - 以编程方式选择多个单元格
[aButtonMatrix setSelectionFrom:2 to:3 anchor:2 highlight:YES];
setSelectionFrom:to:anchor:highlight:以编程方式选择一系列单元格。
setSelectionFrom:to:anchor:highlight:
一般来说,您应该首先检查 Apple 文档,而不是某些在您阅读时可能(并且经常)已经过时的第 3 方内容。
从文档:
startPos、endPos 和 anchorPos 是单元格位置,从接收器左上角单元格的 0 开始,按行顺序排列。例如,顶行中的第三个单元格将是数字 2。
要模拟没有修饰键的拖动,取消选择之前选择的任何内容,请在调用此方法之前调用 deselectAllCells。