0

我想我可能错过了显而易见的事情,但我不确定。

文档中关于子类化 NSDocument的部分指出NSDocument 的子类必须覆盖一种读取和一种写入方法。

如果我正在创建一个不会写回任何内容的查看器应用程序,我是否还需要重写一个写入方法(返回什么,nil?)或者我可以忽略它并确保没有可以调用的保存方法?

4

1 回答 1

1

Given that the documentation says “must”, I’d say yes, write a do-nothing write method. Even if it works without one now, and there’s no obvious reason to break that, if it says “must” it’s entirely fair for AppKit to actually require it at some point in future.

于 2010-03-27T23:49:39.360 回答