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.
我从库中拖了一个表视图,并链接了数据源和委托,它工作。但是当应用程序运行时,我可以双击表格中的行,并在其中实际输入一些单词。我只是希望它是不可编辑的。我该怎么办?
实现以下将返回 NO 的委托方法
- (BOOL)tableView:(NSTableView *)aTableView shouldEditTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex { return NO; }
您可以取消选中 xib 文件中表列属性中的可编辑按钮。