Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add subview to a webview so that the subview would scroll along with webview?

I have webview.

Now I want to add a subview to it. I added it using addsubview method.

The view got added, but did not scrolled with webview.

I want my subview to be scrolled with the webview.

How can I do that?

Regards, Akshay.

like image 554
Akshay Shah Avatar asked Jul 27 '10 08:07

Akshay Shah


1 Answers

You simply need to add your subview to the UIScrollView of the UIWebView like this to have your subview scroll with the webview content:

[webView.scrollView addSubview:youSubView];
like image 136
ciryx Avatar answered Oct 28 '22 17:10

ciryx