如何将委托添加到基于文档的应用程序
How do I add a delegate to a document based application
我不知道如何将委托 NSTextViewDelegate
添加到我的基于文档的应用程序中。 @implementation
是:
@interface MPODocument : NSPersistentDocument
而且我似乎无法添加 NSTextViewDelegate
。我该怎么做?
就这么简单!
@interface MPODocument : NSPersistentDocument<NSTextViewDelegate>
我不知道如何将委托 NSTextViewDelegate
添加到我的基于文档的应用程序中。 @implementation
是:
@interface MPODocument : NSPersistentDocument
而且我似乎无法添加 NSTextViewDelegate
。我该怎么做?
就这么简单!
@interface MPODocument : NSPersistentDocument<NSTextViewDelegate>