ios – UIWebView不适合设备屏幕

前端之家收集整理的这篇文章主要介绍了ios – UIWebView不适合设备屏幕前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个网页视图,我想填写iDevice的全屏.我把它放在视图中心设置为中心并与容器边缘齐平.然而,当我加载应用程序时,视图比它运行的模拟iPhone大.我做了一些搜索,一些建议自动布局,这已经应该是视图的中心.我发现的另一件事是通过代码设置大小.
  1. self.webView.frame = self.view.bounds

我甚至将应用程序从通用应用程序更改为iPhone,对布局没有影响.

完整来源:

  1. class ViewController: UIViewController {
  2.  
  3. @IBOutlet weak var webView: UIWebView!
  4.  
  5. override func viewDidLoad() {
  6. super.viewDidLoad()
  7. // Do any additional setup after loading the view,typically from a nib.
  8.  
  9. self.webView.frame = self.view.bounds
  10.  
  11. webView.frame = self.view.bounds
  12. var uri = NSURL(string:"http://google.com")
  13. var req = NSURLRequest(URL: uri)
  14. webView.loadRequest(req)
  15. }
  16.  
  17. override func didReceiveMemoryWarning() {
  18. super.didReceiveMemoryWarning()
  19. // Dispose of any resources that can be recreated.
  20. }
  21.  
  22.  
  23. }

解决方法

设置缩放以适合视图边界.试试这个:
  1. self.webView.frame = self.view.bounds
  2. self.webView.scalesPageToFit = true

希望这可以帮助.. :)

猜你在找的iOS相关文章