在xcode中添加HTML文件作为UIWebView

时间:2011-11-04 05:07:19

标签: iphone html xcode

当我在UIWebView中添加HTML文件时,我没有得到完整大小的图像。只有四分之一的图像显示出来。我的代码是

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
       [webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Ganesh" ofType:@"html"]isDirectory:NO]]];
       webview.delegate=self;

} 图像显示为颠倒。任何人都可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:2)

webView.backgroundColor=[UIColor colorWithRed:153.0/255 green:22.0/255 blue:11.0/255 alpha:1.0];
NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"faq-1" ofType:@"html"]isDirectory:NO ];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj]; 

答案 1 :(得分:0)

根据webview设置orientation的框架。