简体   繁体   中英

How to Zoom UIWebView in iPhone

I am new to this technology,

I am loading webpage in my webview ,

I didn't set scalePageToFit property. without using this property i want to do Zooming In and Out on my webview.

is it Possible ?

Here is my Code snippet,

NSURL *url2=[NSURL URLWithString:str1];
NSURLRequest *req2=[NSURLRequest requestWithURL:url2];
[webView1 loadRequest:req2];
[webView1.scrollView setZoomScale:2.0 animated:TRUE];
[webView1 release];

str1 is my url i tried this but, still i am unable to zoom my web view in simulator.

Any help will be appreciated.

Thanks In Advance !

您需要将scalePageToFit属性设置为YES。

UIWebView is having scrollView as a property. Use ScrollView's delegate method

– scrollViewDidEndZooming:withView:atScale:

This might help you.

Follow this link : This might give you some clue. how to zoom the scrollview.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM