如何将.rtfd.zip文件加载到iPad UIWebView中

时间:2010-07-18 14:04:31

标签: ipad uiwebview

我有一个iPad UIWebView,它必须显示一些rtfd.zip文件。我试着这样做:

-(void) viewWillAppear:(BOOL)animated {

[self loadFile:string];
}
- (void)loadFile:(NSString*)file
{
NSString* resourcePath = [[NSBundle mainBundle] bundlePath];
NSString* sourceFilePath = [resourcePath stringByAppendingPathComponent:file];
NSURL* url = [NSURL fileURLWithPath:sourceFilePath isDirectory:NO];
NSURLRequest* request = [NSURLRequest requestWithURL:url];
[webview loadRequest:request];
[resourcePath release];
}

但我只得到一个空白页面。插座肯定连接正确 - UIWebView可以加载谷歌主页。

我做错了什么? 提前谢谢!

1 个答案:

答案 0 :(得分:1)

尝试使用它,我使用此输出

    - (void)loadFile:(NSString*)file    {

        UIWebView *webview=[[UIWebView alloc] init];

        NSString *FullstrURL=[[NSBundle mainBundle] pathForResource:file 
                                                             ofType:@"html" ];
        NSLog(@"HTML String = %@",FullstrURL);
       [webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:FullstrURL]]];

 }