0
votes
0answers
12 views
UIWebView Touches
I'm trying to catch when a user stops interacting with a UIWebView. I've added this code to my UIWebView, but it never seems to get called.
- (void)touchesEnded:(NSSet *)touches …
0
votes
1answer
11 views
How do I get a string into a format I can use with UIWebView loadRequest?
It turns out that if you load data into a UIWebView using loadHTMLString, that the webView will always return NO for canGoBack and canGoForward properties. Unfortunately, I have to …
0
votes
2answers
26 views
UIWebView locally save images and just load html
Hello,
i want to load just the html from the web and show the images from the local resource.
This helped me a lot, but is the path to the resource on every device the same? Or do …
0
votes
2answers
18 views
Is UIWebView’s JavaScript evaluator able to use the JS’s RegExp object?
There is no default RegEx library on the iPhone. Is it ok if I use UIWebView's stringByEvaluatingJavaScriptFromString to evaluate a JavaScript string that actually uses the RegExp …
0
votes
1answer
43 views
Youtube App on iPhone ignoring private videos
Hello there. I seem to have noticed an odd bug in the YouTube App with the iPhone. I have written a small program that fires off the YouTube app with a url like:
http://www.youtub …
0
votes
1answer
17 views
UIWebView finished loading Event
Hello,
is it possible to start an event when an UIWebView (Iphone) has finished loading the URL.
How can i find out, the current URL of the UIWebView?
Best regards,
Andreas
0
votes
2answers
68 views
UIWebView resizes text after rotating: looking for explanation for magical bug or my stupidity
Hello, all,
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 un …
1
vote
3answers
61 views
Is it possible to convert html (uiwebview) on the iphone into pdfs, or pngs?
I'd like to be able to download a web page and then save it as a pdf, or png (or save it locally with all the html, image and css etc files). This is so the page can be viewed with …
3
votes
1answer
615 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 w …
0
votes
2answers
143 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 …
0
votes
0answers
11 views
How to set the default (submit) button for a page loaded in an iPhone UIWebView (stringByEvaluatingJavaScriptFromString?)
Hi, I'm using a UIWebView to load an HTML form in my iPhone app.
The form has three submit buttons (and selecting "Go" on the iPhone keypad selects the first submit button).
I'm …
0
votes
1answer
26 views
Download to iphone via iphone app
Hi All..
In my iPhone application i want to allow a user to download a file.(video file)
From a UIWebview i have linked download button to the video file.
Didnt worked !
Any ide …
0
votes
2answers
48 views
Read JSON content from UIWebView
I'm using a UIWebView to display a captcha. If the user enters the captcha correctly, then the server returns data using JSON serialization. I don't want the view to display this, …
0
votes
1answer
60 views
UIWebView inside a UIScrollView + (text instant repagination)
Hi,
I'm trying to do something like an eReader, did someone have any ideas of how to make a UIWebView inside a UIscrollView, it will display some texts and of course no scrolling …
0
votes
2answers
97 views
Can I handle alert inside UIWebViewDelegate?
<script language="javascript">
alert("Hell! UIWebView!");
</script>
I can see the alert message inside my UIWebView but can I handle this situation?
Update:
I'm …
