У кого-нибудь есть проблемы с renderInContext?
Потому что я пытаюсь отобразить UIWebView, но вызов renderInContext изменяет мой UIWebView contentSize!
Вот мой код:
-(void)render
{
UIGraphicsBeginImageContext(webview.bounds.size);
// webview.scrollView.contentSize.width = 5120.0
[webview.layer renderInContext:UIGraphicsGetCurrentContext()];
// webview.scrollView.contentSize.width = 6400.0
renderedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
Спасибо