1
我想在基於NSDocument的應用程序中顯示HTML源代碼。但是,它會將Safari呈現爲頁面。在Cocoa中打開HTML源代碼
下面是我用來打開HTML代碼:
NSData*data;
NSMutableDictionary *dict = [NSDictionary dictionaryWithObject:NSHTMLTextDocumentType
forKey:NSDocumentTypeDocumentOption];
data = [NSData dataWithContentsOfFile:[self fileName]];
mString = [[NSAttributedString alloc]
initWithData:data options:dict documentAttributes:NULL
error:outError];
我在做什麼錯?
感謝彼得,工作得很好! :-D – Pripyat 2010-03-05 21:21:45