當我的應用程序顯示「保存文件」窗格時,我收到一條消息,我不會在xcode的輸出日誌中說明。保存文本文件時Wierd日誌消息
該消息是 StressIt [38940:6d83] [QL]無法獲得在XTUM /插件捆綁信息 - 文件://本地主機/用戶/卡勒/庫/開發商/ Xcode中/ DerivedData/StressIt-exmfuiykgzqebkbxzzwzsuzawjyk /構建/產品/調試/
我GOOGLE了它,發現它似乎是一個OSX的常見錯誤,但無法找到任何有關它的信息相對於開發目標c。有人知道這是什麼嗎?我做錯什麼了嗎?我可以修復它嗎?
我偷來保存文件
// String to write
NSString * zStr = [[NSString alloc] initWithString:[[resultTextOutlet textStorage] string]];
// Get an URL
NSSavePanel * zSavePanel = [NSSavePanel savePanel];
NSInteger zResult = [zSavePanel runModal];
if (zResult == NSFileHandlingPanelCancelButton) {
return;
}
// Store url where to save the file
NSURL *zUrl = [zSavePanel URL];
// Write file
BOOL zBoolResult = [zStr writeToURL:zUrl atomically:YES encoding:NSASCIIStringEncoding error:NULL];
// Report write error
if (! zBoolResult) {
NSAlert *writeError = [NSAlert alertWithMessageText:@"Error while writing file" defaultButton:@"OK" alternateButton:nil otherButton:nil informativeTextWithFormat:@"Something went wrong whilw writing the file to disk."];
[writeError beginSheetModalForWindow:appWindow modalDelegate:nil didEndSelector:nil contextInfo:nil];
}