1

我创建了一个 Cocoa 制作的文本编辑应用程序,它模仿 TextEdit 并添加了一些其他功能。我使用 NSTextView 的子类。我的问题是,我不能像在 TextEdit 中那样将图像(例如 jpeg)拖到我的文本窗口中。

我尝试了以下方法:我的子类的 -init 方法如下:

- (id)init
{
self = [super init];
if (self) {

    // Add your subclass-specific initialization here.
    // If an error occurs here, send a [self release] message and return nil.
    [self setImportsGraphics:YES];

}

return self;
}

但问题保持不变......任何帮助表示赞赏。

4

1 回答 1

0

您确定正在调用该 init 函数吗?

也许您应该覆盖并将“setImportGraphics”行添加到 initWithFrame:(NSRect)frame 函数中。

于 2013-08-09T06:54:29.903 回答