我通过“泄漏”多次检查内存,发现总是存在泄漏。你能帮帮我吗?
代码在这里:
NSAppleScript* startFinder = [[NSAppleScript alloc] initWithSource:
@"tell application \"Finder\"\n"
@" delay 1\n"
@" try\n"
@" «event GKKJload»\n"
@" on error msg number num\n"
@" display dialog \"another try\" buttons{\"i see\"} default button 1 with icon caution with title \"aaa\"\n"
@" end try\n"
@"end tell"];
[startFinder executeAndReturnError:nil];
[startFinder release];
提前感谢任何人。