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.
由于您没有指定,我假设此代码来自您的‑tableView:viewForTableColumn:row:委托方法的实现NSTableView。
‑tableView:viewForTableColumn:row:
NSTableView
如果是这种情况,那么表格视图对单元格的作用并不重要,因为单元格的所有权不是您的问题。您的责任是遵守方法签名所暗示的内存管理规则,在这种情况下,委托方法返回一个自动释放的对象,因为它不包含单词newor copy。因此,您需要返回一个自动释放的对象。在你的情况下,这就是cell实例。
new
copy
cell