我的应用程序有一个uiwebview在非视网膜和3.5英寸视网膜上工作得很好,但是在Iphone 5 a.k.a 4英寸视网膜上,它没有填满屏幕,webview和tabbar之间存在差距。
试过这个,它不起作用
myview.autoresizingMask = UIViewAutoresizingFlexibleWidth;//myview is the webview
myview.scalesPageToFit = YES;
self.view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
也尝试了这个:
我该如何解决这个问题?
谢谢, MORD