根據iOS的Using and Creating Error Objects,可以使用以下代碼顯示錯誤對象。iOS SDK中的NSAlert.h在哪裏?
NSError *theError = nil;
BOOL success = [myDoc writeToURL:[self docURL] ofType:@"html" error:&theError];
if (success == NO) {
// Maybe try to determine cause of error and recover first.
NSAlert *theAlert = [NSAlert alertWithError:theError];
[theAlert runModal]; // Ignore return value.
}
不幸的是,我不夠聰明想弄清楚如何包括NSAlert.h
。
任何幫助,將不勝感激。
僅供參考:由於iOS 8 UIAlertController取代UIAlertView和UIActionSheet。 – 2015-08-28 22:25:58