I designed a UIWebView with 320x500 in StoryBoard. But when run in Iphone 6 Plus Simulator, i want to this webview full screen or scale with the screen of device. How to make it in storyboard?
I wrote code in ViewDidLoad but not working.
override func viewDidLoad() {
super.viewDidLoad()
self.detailWebView.frame = self.view.frame;
println("H:\(self.view.frame.height), W:\(self.view.frame.width)")
self.configureView()
}
Seem to be self.view.frame height and width that true, but size of this webview stills 320X500