在初始化UIWebView的时候使用
[[UIWebView alloc] initWithFrame:CGRectMake(0.0f,0.0f,320.0f,320.0f)];
方法进行初始化,但是UIWebView进行初始化,但是他的大小是固定的,我想问下,如何让它全屏呢?让他在ipad环境下全屏,在iphone环境下也是全屏呢?
请各位大侠赐教,谢谢。。。
将UIWebView的scalesPagesToFit设置为true。
谢谢,搞定了,改为
[[UIWebView alloc] initWithFrame:CGRectMake(0.0f,0.0f,self.view.bounds.size.width,self.view.bounds.size.height)];就可以了。。。