I\'m coding an iPhone app in which I have a UIWebView that loads a website with a responsive design.
UIWebView
The problem I have is when I rotate the devices to
finally, this solved my problem
- (void)willAnimateRotationToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { [self.myWebView setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)]; }