1
我見過大量的實例介紹如何使用NSAppleScript
,例如:如何從compileAndReturnError獲取錯誤消息?
NSAppleScript *script = = [[NSAppleScript alloc] initWithSource:source];
NSDictionary *errorDict;
if (![script compileAndReturnError:&errorDict]) {
// ...
}
但我從來沒有見過任何示例代碼做任何事情與errorDict
。在我的情況下,我想提取錯誤消息字符串。如何做到這一點?