71
votes
18answers
32k views

Stop UIWebView from “bouncing” vertically?

Does anyone know how to stop a UIWebView from bouncing vertically? I mean when a user touches their iphone screen, drags their finger downwards, and the webview shows a blank spot above the web page I ...
37
votes
2answers
9k views

UIWebView open links in Safari

I have a very simple UIWebView with content from my application bundle. I would like any links in the web view to open in Safari instead of in the web view. Is this possible?
26
votes
1answer
17k views

Using HTML and Local Images Within UIWebView

I have a UIWebView in my app which I want to use to display an image which will link to another url. I'm using <img src="image.jpg" /> to load the image. The problem is that the image ...
25
votes
1answer
4k views

How to Get the Title of a HTML Page Displayed in UIWebView?

I need to extract the contents of the title tag from an HTML page displayed in a UIWebView. What is the most robust means of doing so? I know I can do: - (void)webViewDidFinishLoad:(UIWebView ...
25
votes
4answers
25k views

Reading HTML content from a UIWebView

Is it possible to the raw HTML content of a web page that has been loaded into a UIWebView? If not, is there another way to pull raw HTML content from a web page in the iPhone SDK (such as an ...
24
votes
7answers
15k views

Can't change background for UIWebView in iPhone SDK

Is there a way to change background color for UIWebView? None of the colors set in IB effect UIWebView behavior: before acctual content is loaded it shows as up as white (causing a white flash between ...
24
votes
7answers
16k views

iPhone UIWebview: How to force a numeric keyboard? Is it possible?

I'm experimenting with PhoneGap to develop some iPhone apps. PhoneGap basically wraps a UIWebView - it works well. The problem is the my app has several input fields that only take numeric input. I ...
20
votes
5answers
22k views

iPhone UIWebView local resources using Javascript and handling onorientationChange

I'm trying to server HTML Javascript and CSS content from an iPhone application's local resources, and I'm having trouble handling onOrientationChange events and including external Javascript. I seem ...
17
votes
3answers
6k views

Force a WebView link to launch Safari?

I have a UIWebView embedded within an iPhone app of mine. I want to be able to have certain links within that webview open into the full Mobile Safari app (i.e. not my embedded version of it). Is ...
16
votes
1answer
1k views

How to change the character encoding in UIWebView?

Summary of the problem: When browsing non-English sites that does not explicitly specify the correct character encoding with UIWebView on the iOS, the page cannot be displayed correctly. Detailed ...
15
votes
2answers
15k views

Pros and cons of MPMoviePlayerController versus launching UIWebView to stream movie

I have a client who has video content for the web in Flash format. My task is to help them show the videos in an iPhone app. I realize that step one is to get these videos into the appropriate ...
14
votes
7answers
7k views

How to safely shut down a loading UIWebView in viewWillDisappear?

I have a view containing a UIWebView which is loading a google map (so lots of javascript etc). The problem I have is that if the user hits the 'back' button on the nav bar before the web view has ...
12
votes
4answers
2k views

MPMoviePlayerController fullscreen movie inside a UIWebView

I'm having a problem with the UIWebView and MPMoviePlayerController: My UIWebView have a movie inside the html (it's a local html file), I'm using html5 and a video tag for the video. The problem is: ...
12
votes
8answers
17k views

Handling touches inside UIWebview

I have created a subclass of UIWebView , and have implemented the touchesBegan, touchesMoved and touchesEnded methods. but the web view subclass is not handling the touche events. Is there any ...
11
votes
3answers
4k views

How to make a transparent UIWebVIew

I have an app with a UITableView and a corresponding detail view for each row. In the detail view I have to display some text and a background image (text is different for each row, but the image ...
11
votes
4answers
3k views

Remove gradient background from UIWebView?

How do remove the gradient from a UIWebView - the one that you see if you overscroll the top or bottom. This code webView.backgroundColor = [UIColor whiteColor]; just changes the color of the ...
11
votes
4answers
2k views

Adding a header view to a UIWebView similar to Safari and Articles

I'd like to add a header view to an UIWebView similar to the address/search bar in MobileSafari and the excellent Articles.app by Sophia Teutschler. More precisely, I'd like to create a "pull to fix ...
11
votes
5answers
5k views

iPhone UIWebView slow loading to local HTML files

i'm developing an app that requires caching web pages (completely) along with their CSS files and images. so after saving the entire Html of the page ( going through the links to store each file ...
11
votes
5answers
8k views

Html5 cache manifest in a UIWebView?

I'd like to be able to use the html5 cache manifest to store images locally on an iPhone that is visiting the page via a UIWebView within an app. I've set up a sample that I think conforms to the ...
11
votes
8answers
7k views

Remove UIWebView Shadow?

Does anyone know if its possible to remove the shadow that is placed on the UIWebView window? Example: http://uploadingit.com/files/1173105_olub5/shadow.png If its possible how do you do it? ...
11
votes
7answers
10k views

How do I use a UIWebView in a Table Cell?

I'm building a table with some text that is HTML, so I am using a UIWebView as a subview of my custom table cells. I already ran into one problem - as I scrolled down in the table, it would take the ...
10
votes
2answers
658 views

Facebook comments in iOS UIWebView

I'm loading a URL from my own web site into a UIWebView in an iPhone app. This page has the Facebook Comments social plugin enabled. It was working beautifully two weeks ago, using the mobile friendly ...
10
votes
2answers
7k views

How to determine the content size of a UIWebView?

I have a UIWebView with different (single page) content. I'd like to find out the CGSize of the content to resize my parent views appropriately. The obvious -sizeThatFits: unfortunately just returns ...
10
votes
3answers
2k views

iPhone: Performances Differences Between NSURLRequestCachePolicy Settings

When using NSURLRequest on the iPhone, what are the real world performance differences between the various NSURLRequestCachePolicy settings? I am specifically interested in the cache policy's effect ...
10
votes
5answers
5k views

Reliably opening App Store links from a UIWebView

I have an app that will display web pages within a UIWebView. The pages it shows may contain links to other iPhone apps on the App Store. In a normal browser on a desktop computer, clicking these App ...
10
votes
1answer
4k views

Loading a webpage through UIWebView with POST parameters

Is it possible to load a page through UIWebView with POST parameters? I can probably just load an embedded form with the parameters and fill them in with javascript and force a submit, but is there a ...
9
votes
2answers
1k views

Return to app behavior after phone call different in native code than UIWebView

According to Apple's documentation, in order to make phone call from my app, I need to implement the following protocols: HTML link: <a href="tel:1-408-555-5555">1-408-555-5555</a> ...
9
votes
3answers
11k views

iPhone dev: load a file from resource folder

I'm writing an iPhone app with a UIWebView which should display various html files I have in the app resource folder. In xcode my project overview, these html files are displayed like this: dirA ...
9
votes
5answers
6k views

get current URL of UIWebview

I already tried getting the current url of my UIWebView with: webview.request.URL. Unfortunately the NSURL was empty. Anything wrong here? I'am working with Xcode 3.2.2 beta 5. The code above should ...
9
votes
4answers
4k views

UIWebView resizes text after rotating: looking for explanation for magical bug or my stupidity

so I have UIWebView in my application and I load some html (article) to it, put some CSS to make everything nicer. That's simple and clear and everything is perfect until I try to add reading in ...
9
votes
4answers
11k views

Need content in UIWebView to display quickly

Part of my app caches web pages for offline viewing. To do that, I am saving the HTML fetched from a site and rewriting img urls to point to a file on the local store. When I load the html into a ...
9
votes
3answers
9k views

how to increase font size in UIWebView

how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;
8
votes
2answers
567 views

How does the iBooks App format the text on separate pages?

Looking at the iBooks App, I was wondering how it accomplishes to format text (probably a very simple txt file) so that it is NOT SCROLLABLE but divided on separate pages. I'd like to achieve the ...
8
votes
3answers
1k views

Is there a bug with using InnerHTML inside a UIWebView within a native iPhone application?

I have a fairly large HTML/JS/CSS application that works great when running as a web application with Safari on the iPhone. When running this same application in an UIWebView within a native iPhone ...
8
votes
4answers
7k views

How to handle app URLs in a UIWebView?

I recently found that my UIWebView was choking on ITMS links. Specifically, from the UIWebView in my app, if I navigate to a site such as this one and click the "Available on the App Store" link, ...
8
votes
2answers
844 views

UIWebView - When (or how) does CFData get released?

after multiple days of banging my head against the wall and having sleepless nights I'm hoping to find some help here. I've gone through various posts here, but none of the answers seem to provide a ...
8
votes
2answers
1k views

Hide text selection handles after action in UIWebView

I have several custom UIMenuItems that do things with a selection in a UIWebView. After the action has been run on that selection I want to hide the selection handles just as copy: does. I have ...
8
votes
1answer
7k views

Using UIDocumentInteractionController to display presentPreviewAnimated: via UIWebView

I'd like to intercept the clicks from any of the supported file types of the UIDocumentInteractionController and display them in a modal view (provided by presentPreviewAnimated: method of ...
8
votes
2answers
4k views

Youtube video autoplay on iPhone's Safari or UIWebView

Is it possible to get a youtube video to autoplay on Safari and/or UIWebView? I've seen this done in an iPhone app, the tableview displays cells that do not have Youtube preview icon (pretty sure it's ...
8
votes
5answers
15k views

How to handle drag events on iphone and ipad with javascript/jquery?

I have a little app that has been under development for some time. My friends and I have been working really hard on this and are near release of the beta version. I want to give some demos using ...
8
votes
2answers
7k views

iPhone Dev: UIWebView baseUrl to resources in Documents folder not App bundle

Greetings! Can anyone please kindly assist me finding a way around the following: load an html into a UIWebView using loadHTMLString and include(using baseURL) the resources such as the CSS, image ...
8
votes
1answer
4k views

Has anyone found that UIWebView fails for some URLS?

I have been working on an iPhone App for a couple of weeks now and one of the earlier features I added was a UIWebView that loaded context sensitive Wikipedia page topics. This was pretty trivial to ...
8
votes
2answers
3k views

jQuery not loading on the iPhone

I'm trying to use a UIWebView to display content, and jQuery to manipulate that content, but I can't get jQuery to load. Here's the code that I have setting up the UIWebView, setting the baseURL, and ...
7
votes
2answers
2k views

UIWebView loadHTMLString not working in iOS5

Perhaps this is similar to this question, which has no responses: loadHTMLString Not Working With iOS5? I have a UIWebView which I populate using loadHTMLString:baseURL:. The HTML is small and ...
7
votes
3answers
3k views

iOS WebView remote html with local image files

Similar questions have been asked before, but I could never find a solution. Here is my situation - my UIWebView loads a remote html page. The images used in the web pages are known at build time. In ...
7
votes
2answers
799 views

HTML 5 video in UIWebview Orientation landscape

I have an iPhone application where every view is in portrait. I have a UIWebview with some HTML in it. Amoung that there is a html5 tagged video. When I play that video, it plays in portrait only. In ...
7
votes
3answers
1k 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, ...
7
votes
3answers
3k views

Playing videos in UIWebView broken in iOS4?

I have an app that's worked since version 2.0 of the SDK where I create and add a UIWebView and then load the URL of an .mov to play a movie. Ever since the early version of the 4.0 beta up until the ...
7
votes
3answers
5k views

Is there a way to programmatically scroll to a PDF page within a UIWebView?

It is possible to use JavaScript to set the pixel y-offset of a UIWebView, e.g.: [webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"scrollTo(0, %d)", offset]]; So is there ...
7
votes
2answers
5k views

How to add controls beneath a UIWebView

What's the simplest, fastest, or otherwise (objectively) best way to add a couple of controls (e.g. some UIButtons) beneath a UIWebView? To be clear, I'd like to display a regular scrolling ...

1 2 3 4 5 38