以下是我的代码:
NSOpenPanel *openDlg = [NSOpenPanel openPanel];
[openDlg setCanChooseFiles:YES];
[openDlg setAllowedFileTypes:[NSArray arrayWithObjects:@"pdf", nil]];
if([openDlg runModal] == NSOKButton) {
...
}
在我调用runModal
之前,使用的内存为30MB,但在调用之后,使用的内存似乎是70MB,当我向上和向下滚动时,使用的内存正在增加。
谁能告诉我原因?这是内存泄漏吗?