You use the iOS SDK UIWebView class to embed web content in your application.

learn more… | top users | synonyms

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
18k 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 ...
13
votes
2answers
1k views

iOS5: Exception on UIWebView in modal UIViewController playing Youtube video

I am currently working on adapting an existing iOS 4 application with the new iOS 5 SDK. I found a new crash when presenting a UIWebView in a modal view controller that reads a Youtube video. ...
13
votes
2answers
433 views

How to handle YouTube video events (started, finished, etc) in uiwebview iOS

Currently I'm using the new iframe API to embed a YouTube video inside the uiwebview on the iPad and I've been able to make it auto play without user interactions. In the iframe API it is described ...
13
votes
4answers
10k 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 ...
13
votes
6answers
17k views

How to determine UIWebView height based on content, within a variable height UITableView?

I am trying to create a UITableView with variable height rows as explained in the answer to this question My problem is each cell contains a UIWebView with different (statically loaded) content I ...
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
1k views

HTML5 video on iOS5 not loading/showing

I have an HTML/JS app running in a webview in an iPad app. The app uses the HTML5 video tag. Videos work fine in iOS4.3 but today I've tested on iOS5 and the videos simply do not show up. I have ...
11
votes
2answers
342 views

How can I inject a user script on iOS?

I'm working on Fahrii, which is, essentially, a userscript enabled mobile browser. At the moment, I'm having trouble invoking the scripts on a web page that's loaded into a UIWebView. I'd like to keep ...
11
votes
4answers
3k views

Problem with Asp.Net Forms Authentication when using iPhone UIWebView

I am writing a Asp.net MVC 2 application that uses Forms Authentication and currently I am having a problem with our iPhone application in regards to the authentication/login over the web. We have ...
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
662 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
6answers
6k views

Video/audio streaming does not stop even if UIWebView is closed - iPad

I see this issue only on the iPad. The same things works as expected on the iPhone. I am opening the URL from my application in a UIWebView. If the URL is a normal web page, it works fine as ...
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
1answer
201 views

How to activate spellchecking for a contentEditable div in a UIWebView?

UIWebView (iOS 5.0) does not show the red-squiggly spelling correction underlines for this: id html= @"<div spellcheck=\"true\" contenteditable=\"true\"></div>" [webView ...
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
2answers
858 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 ...
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
570 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
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
499 views

Facebook in iPad: UIWebView - renders as touch instead of standard web

Up until a few days ago it worked fine: opening facebook.com in iPad/UIWebView rendered as standard web. Now Facebook is force-rendered as touch - as if the URL was http://touch.facebook.com. This ...
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 ...

1 2 3 4 5 59