我正在为iPhone开发一个应用程序。我的项目中有一个名为Class01.rtfd的RFTD文件。我想在UIWebView中打开它。但它不起作用。我的守则如下:
NSString *localFilePath = [[NSBundle mainBundle] pathForResource:@"Class01" ofType:@"rtfd"] ;
NSURLRequest *localRequest = [NSURLRequest requestWithURL:
[NSURL fileURLWithPath:localFilePath]] ;
[self.webview loadRequest:localRequest] ;