NSOpenPanel相关的记忆问题

时间:2013-04-15 06:54:27

标签: macos cocoa nsopenpanel

以下是我的代码:

NSOpenPanel *openDlg = [NSOpenPanel openPanel];
[openDlg setCanChooseFiles:YES];
[openDlg setAllowedFileTypes:[NSArray arrayWithObjects:@"pdf", nil]];
if([openDlg runModal] == NSOKButton) {
   ...
}

在我调用runModal之前,使用的内存为30MB,但在调用之后,使用的内存似乎是70MB,当我向上和向下滚动时,使用的内存正在增加。

谁能告诉我原因?这是内存泄漏吗?

0 个答案:

没有答案