uiwebview

Can you over-ride the CSS of a web page displayed in UIWebView?

Is it possible to load a website with my own local css, ignoring the css used by the site? in UIWebView. ...

Problem pushing URL's to in-app iPhone web browser

Hi, I have an RSS parser, which downloads a link to each item from an RSS feed. How do I make it so that when a user selects a row in the UITable, it opens my web view (made following this tutorial http://dblog.com.au/iphone-development/iphone-sdk-tutorial-build-your-very-own-web-browser/) with the URL of the item (which can be gathered...

Ipad app with two UIWebViews

I have an iPad app with two UIWebviews, one on top of the other. Is there a way to have all the links that are clicked in one, open in only the other view? ...

How to load an .rtfd.zip file into an iPad UIWebView

I have an iPad UIWebView which has to display some rtfd.zip files. I try to do it like this: -(void) viewWillAppear:(BOOL)animated { [self loadFile:string]; } - (void)loadFile:(NSString*)file { NSString* resourcePath = [[NSBundle mainBundle] bundlePath]; NSString* sourceFilePath = [resourcePath stringByAppendingPathComponent:file];...

Editable Webview/TextView ? Or Any other Controller ?

Hello, I am working on a project which can edit any document file whether it is doc, rtf, txt, pdf file. After editing user can save or you can say update that file. Please advise .. how can anyone edit pdf or doc and re save it ? Thanks ...

Ipad app link open in UIWebViews

I have an iPad app with to UIWebViews. Is there a way to have some of the links clicked in the top view open in the bottom view, based on an attribute of the link's html? (Such as target="" or id="") ...

Problem with distributing web applications on the Apple Store

Hi, I have quite a problem with finding out how to distribute the web based application. There is the description: I have a web based application I would like to distribute over Apple Store (the application itself is free - I would like to use Apple Store because everybody uses it and it is a natural distribution channel for iPhone). T...

How to properly deal with encrypted Word and Excel documents for viewing in a UIWebView?

I have a UIWebView that works fine for viewing an unencrypted Word or Excel document stored in the app's local Documents folder. I can use either: [webView loadData:documentData MIMEType:mimeType textEncodingName:textEncoding baseURL:baseDocumentURL]; Or: [webView loadRequest:[NSURLRequest requestWithURL:baseDocumentURL]]; In bot...

UIWebView won't scroll till the end / bottom

Hi guys, I have the same problem as described here: http://stackoverflow.com/questions/2843299/uiwebview-doesnt-scroll-to-the-bottom-of-the-webpage-loaded-created (unfortunately nobody answered there) I have a UIWebView with inside UIView, and it doesn't scroll to the bottom, it's actually possible to scroll it but it is bouncing back a...

calculate text for a height, paginate the content

HI I am trying to paginate the content of UIWebview so i disabled the scroll then the second page will the current view height. The problem is sometimes the last line of page gets clipped so the first line of the next page too.I want a solution for this situation, if it occurs,it should left the line for the next page OR Is there any so...

Get HTML of selected content

Hi, I have a UIWebView i want to introduce functionality of content(may be text or text and images) selection so that the user can email it. Is there any way to get the HTML code for the given selection using JavaScript? I tried the built-in clipboard of webkit but its seems not working for images selection.May be i am wrong,if there is ...

How to get UIWebView User-Agent

I've got a problem working with one remote server. My app makes a request to a server using [NSData initWithContentsOfURL:] method and as a response I get website's url which I open in UIWebView. The problem is that those requests have different User-Agent and server can't serve me correct because it expects that I send all requests wi...

Set dynamic height of webview depending on the content iphone

Hi all, I want set dynamic height for webview depending on the dynamic text. I've tried [my_webview sizeThatFits:CGSizeZero]; But it didn't work for me. I want to set webview height dynamically. Thanx in advance. ...

How to add a gesture recognizer to a UIWebView subclass?

If I add a gesture recognizer to a subclassed UIWebView instance called webView, e.g.: UILongPressGestureRecognizer *_longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(webViewGestureRecognized:)]; _longPressRecognizer.allowableMovement = 20; _longPressRecognizer.minimumPressDuration = 1.0f;...

Is there a class like Apple's UIWebView in .NET?

I'm looking to embed web content in my Windows application. Is there a class in the .NET framework for this? If not, are there third party html rendering libraries in C#? ...

android 2.2 WebView and WebViewClient RTSP problem

I wrote an app with webview which displays m.youtube.com. It works in other android versions. However, in Android 2.2, shouldOverrideUrlLoading is not even called when a link like "rtsp://vx.cache.youtube.com/..." is clicked. Does anyone have the same problem? ...

iPhone/iPad WebView Example

Where can I find a simple compilable example on how to create and use a UIWebView? Any non-interface builder examples? ...

XCode ios4 UIWebView Code Problem

-(void)viewDidLoad { [webView loadRequest:(NSURLRequest) requestWithURL:[NSURL URLWithString:@"http://itunes.apple.com/ca/album/zirka-live/id352921457"]];]; } ...

iPad UIWebView and different versions of XCode

I have an iPad app with a UIWebView which loads some local .rtfd.zip files. The problem is that if I compile the app with XCode 3.2.2, everything works fine, but if I compile it with newer versions of XCode, I just get a blank UIWebView. Here's how I load the files into the UIWebVIew: -(void)loadFile:(NSString*)file { NSString* resource...

get copied data from UIpasteboard

hi, i have copied image from UIwebView using clipboard and i want to mail it.For this,I use general pasteboard to get data,but there is a problem in retrieving data.When i check the pasteboard current data,it says the it has Apple Web Archive pasteboard type data,how to read this.here is my code of retriving text. UIPasteboard* pasteboa...