Tagged Questions
-2
votes
2answers
121 views
Pinch To Zoom in UIWebView in iphone App
I am Developing simple App. I am accessing html pages on UIWebVIew. and I wanted to zoom that html pages with the help of zoom option
please help me out.
1
vote
2answers
102 views
Can I use the zoom functionality of UIWebView to just make the HTML text size grow? And not lose any content off the sides?
I have a UIWebView that I am using to display pretty simple HTML. When I enable Scales Pages to Fit, I can pinch and zoom and its pretty cool. But the problem is that it isn't an "intelligent" zoom. ...
0
votes
2answers
339 views
How to Pinch/Zoom in a UiWebView vertically only not horizontally
I want to make my webview to be pinched/zoomed vertically only. By zooming the webview I want to make it zommed vertically only but not horizontally.
Does it possible?
0
votes
2answers
444 views
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 ?
...
2
votes
2answers
351 views
Zoom in on webview on appearing
I have a UIWebView that loads a PDF that is setup in landscape format and is very hard to read on the iPhone screen. My code is like this:
- (void)viewWillAppear:(BOOL)animated {
NSURL *url = [NSURL ...
0
votes
2answers
671 views
UIWebView in UIScrollView Zooming without loosing resolution
I have a simple UIWebView in a UIScrollView for the sake of zoom capability.
The HTML inside UIWebView is displayed fine, unless I start zooming in, when it gets fuzzy. Now, the web page is basically ...
1
vote
1answer
477 views
UIWebView is not zooming more than x2
There are a lot of questions with zooming in UIWebView, but I could not find an answer to mine.
I've got ViewController with WebView. I load an SVG-file into this WebView, and I want to zoom in by ...
1
vote
0answers
278 views
UIWebView zoom on tap/double tap
I have a web page that display an html page. But is there a way I can have this pag zoom on tap etc and back on double tap?
Thanks
Using xcode 4.2
5
votes
3answers
3k views
UIWebView — load external website, programmatically set initial zoom scale, and allow user to zoom afterwards
Is it possible to do all of the above? SO has given me a great way to set the initial zoom scale here. Namely, to include the following line in my webViewDidFinishLoad method:
[webView ...
2
votes
1answer
5k views
UIWebView set initial zoom scale programmatically when loading an external website?
What I want to do is set the initial zoom scale [and in some cases, content offset, but that is less important] for an external website. But after the app initially sets the zoom and offset, the user ...
0
votes
2answers
2k views
UIWebview default zoom level
In my app, I use UIWebviews to display some one page PDFs, I've noticed that in iOS5 the default zoom level is to show the entire document where as in 4.3 the document was opened zoomed in.
Is it ...
0
votes
2answers
680 views
uiwebview Zoom in Not working perfectly
I have zoom my webview using the following code on the button click event
[webView_ stringByEvaluatingJavaScriptFromString:@"document.body.style.zoom = 5.0;"];
really the webview zoom when i am ...
0
votes
1answer
341 views
UIWebView's zoom range is very limited
I have a test UIWebView. I loaded a small amount of custom HTML into it. Nothing special -- two pages, a little text, and a small image on one of the pages. I am using it to test out the class.
...
0
votes
0answers
194 views
How can I prevent a UIWebView from being able to zoom below a zoomScale of 1?
I have a webView that I'm using to display a PDF. I really would prefer it if I couldn't zoom the zoomScale below 1. I thought something like this would work:
- (UIView ...
0
votes
2answers
920 views
When I set the delegate of a UIWebView's built-in UIScrollView, I lose the ability to pinch to zoom, how can I get it back?
I am using a UIWebView to show a PDF. I need to track some UIScrollView events, so I set the built-in UIScrollView like this:
for(UIScrollView *s in webView.subviews) {
s.delegate = self;
}
...
1
vote
1answer
257 views
Keeping UIButton Stationary on Screen
I have a UIButton on top of a UIWebView. The UIButton is supposed to look like it's native to the webpage. However, when I zoom in on the UIWebView, the button comes with it, obviously looking out of ...
0
votes
1answer
369 views
Auto zoom out from textarea in uiwebview
I am using UIWebView in my app, and creating a form in HTML. I am doing this to allow the users to zoom into text.
Although I have ran into an issue with textarea
<textarea rows="3" cols="35" ...
0
votes
1answer
618 views
Android webview disable zoom icons
I have a webview inside a tabview and have enabled the zoomfunctions. However, whenever I got back to the non-webview tab, the +/- icons are still displaying. Is there anyway to get rid of them or not ...
4
votes
2answers
3k views
How to turn off UIWebView horizontal bounce
Simple problem, I have a webview that is supposed to hold just an image for the user to be able to zoom in and out. To keep my look clean, I want to completely disable bouncing on this view, but ...
1
vote
0answers
2k views
How to display UIWebView with correct zoom scale in landscape
I create UIWebView and set autorotate like this:
- (void)loadView
{
self.view = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)] autorelease];
UIWebView *webview = [[UIWebView ...
2
votes
1answer
877 views
use viewport with svg, uiwebview iphone
in this page : http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safarihtmlref/Articles/MetaTags.html
it's explain how to use viewport to define default scale in a ...
0
votes
2answers
4k views
How to detect zoom scale of UIWebView
I want to increase height of UIWebView while user zoom in (like default mail app in iPhone).
So, I have tried the code below to find scrollview in webview and add UIScrollViewDelegate to use ...
1
vote
1answer
2k views
uiwebview zoom programmatically
I want to change the UIWebView zoom level programmatically.
I have tried these but they are not worked for me ;
UIScrollView *sv = [theWebView.subviews objectAtIndex:0];
[sv setZoomScale:50 ...
2
votes
2answers
1k views
unable to zoom on double tap on uiwebview
I needed to enable zoom in and zoom out in webview using gestures. So for that I enabled the scalesPageTofit property. But after doing so my content that I am displaying in the webview becomes so ...
1
vote
0answers
798 views
uiwebview zoom and image width issue
I use UIWebView to load html constructed from strings.
Please see the code below. I have 2 possibly related problems:
limited zooming: it stops zooming after a scale ~2, but I would like the user ...
1
vote
1answer
623 views
Changing the zoom out action for a UIWebView
I'm trying to change the way a UIWebView reacts when the user do a pinch out gesture (when he's doing that, I zoom out and show multiple webView).
I see 2 solutions but I can't make them work :
...
0
votes
1answer
1k views
How to implement zoom on doubleclick in webview in iphone?
I have loaded a HTML page in a web-view.But on double click of the web-view its not zooming.I have also set the "scalesPageToFit" property to "YES" also ,but i am not able see the zoom effect in ...
7
votes
4answers
3k views
How to reset UIWebView's zoom? I'm already using scalesPagesToFit = YES;
I've been looking for the past week for the answer to this question.
I have a UIWebView, inside of a UIScrollView. Everything works great, but I want the content of the UIWebView to reset its zoom, ...
2
votes
1answer
372 views
UIWebView is zooming when I resize it. Can I tell it to stop doing that?
I'm using a UIWebView to display formatted text. It works fine until I start resizing it. When I do it starts zooming and the font size gets too big. Is there anyway to tell it not to zoom or reset ...
3
votes
2answers
692 views
Uiwebview refreshes after zoom and pinch
I have a uiwebview in my App. So far everything works fine, but when i zoom in or out for example the uiwebview refreshes the loaded page and then scrolls and zooms to the new page location and size. ...
0
votes
1answer
1k views
uiwebview within uiscrollview
I am having an issue with a uiwebview within a scrollview. In this scrollview, there is a "header" view at top and "bottomview" which is the webview. I am loading the data into the webview using ...
3
votes
2answers
1k views
zoom in on a uiwebview by taping?
In Safair mobile you can zoom in by double taping if you have a html page that you display.
But if you use a uiwebview and display an image or pdf file you have to pinch open to zoom.
My question is: ...
6
votes
7answers
9k views
iPhone UIWebView width does not fit after zooming operation + UIInterfaceOrientation change
I created a bare bones iPhone app with a UIWebView (Scales Page to Fit = YES, shouldAutorotateToInterfaceOrientation = YES) and loaded a webpage, e.g. http://stackoverflow.com/
Rotating the device ...
5
votes
7answers
17k views
UIWebview won't zoom even after setting scalesPageToFit to YES
I have a UIWebview that is loaded as a subview when a user selects a tab on a UISegmentedControl. For some reason, I can not get it to allow pinch/zooming.
I set the following code in the viewDidLoad ...
2
votes
2answers
3k views
How do I enable the zoom in/out option in a UIWebView?
How do I enable the zoom in/out option in a UIWebView?
1
vote
3answers
2k views
iphone uiwebview programmatic zoom
I'm developing an app that saves html files locally on iPhone file system, then load them in UIWebView. I want to be able to zoom or double tap programmatically on the UIWebView, I tried searching for ...
44
votes
5answers
26k views
How can I enable zoom in on UIWebView which inside the UIScrollView?
I have a UIWebView which inside a UIScrollView (scrollview contain another component)
I tried to enable multitouch both on Interface Builder or Programmatic on UIWebView but it still cannot zoom for ...
