A class used to display web content from within an iOS application.
0
votes
0answers
16 views
iOS Embedded Youtube Player not allowing landscape mode
Weird issue because nothing has changed in the implementation to my knowledge. I have an embedded YouTube clip player (code below), which works fine to play the videos that I want. But, if I rotate ...
0
votes
0answers
13 views
Use Javascript and/or HTML 5 for iOS app graph
I'm trying to decide which is the best direction to include a simple XY line graph in a iOS app I'm working on. I've looked into core-plot, but it looks way overkill for what I'm trying to do. While ...
0
votes
0answers
13 views
Render SVG file and display annotation on top of SVG file in iOS
I want to render the SVG file in iOS application, parse the coordinates data and display the annotation on top of SVG image based on coordinates (something similar to display annotation on MKMapView ...
0
votes
1answer
9 views
UIWebView javascript onclick event not sending event object to function
I am dynamically inserting HTML using simple NSStrings and then loading that into a UIWebview, I am doing this:
[NSString stringWithFormat:@"<div onclick=\"MyClickEvent(e);\"....some more text ...
2
votes
0answers
9 views
Memory management for webview content (Image data from script)
How to manage memory for the webview content? Creating Sample that uses the tab bar with webviews each loads html Google image search results. Its known that app running out of memory, I received ...
0
votes
0answers
21 views
iOS UIWebView contenteditable autocorrect
Currently it appears that setting autocorrect and autocomplete on a contenteditable div in mobile Safari is having no effect. Is there any way around this? Is it possible to set autocorrectionType on ...
0
votes
0answers
20 views
can i use removeAllCachedResponses frequently in iOS?
I am facing a problem in UIWebView, My UIWebView has large content with images and text..
My iPad App has a UITableView to show the listing (in the left side) and a UIWebView(right side) for showing ...
1
vote
1answer
45 views
UIWebView render data offline
I using a UIWebView in my application and I want to allow the user to view the contents of this UIWebView object without being connected to the internet.
I thought of the following approach:
...
0
votes
1answer
29 views
Delay in loading a HTML string into a UIWebView
I have two view controllers inside a navigation controller. The 1st view controller has a menu with a button. Pressing this button moves to the 2nd view controller and loads a html string into a ...
0
votes
1answer
26 views
Respond to AJAX call iOS UIWebView
I am trying to implement a photo upload system via a webview.
I have it working via the safari browser, but have yet to get it working via the webview. My research has led me to realise I need to ...
0
votes
1answer
30 views
webViewDidFinishLoad not calling when having javascript content in webpage
I'm using UIWebView in a project. Sometimes it doesn't call the webViewDidFinishLoad method. Because the web page have some javascripts. The method
- (BOOL) webView: (UIWebView *) webView ...
-1
votes
1answer
39 views
This class is not key value?
I´m really new in IOS programming with XCode 4.2.
I already have a project (my 1st) with different functions, included UIWebView, and it works!
Untill.. i tryed to add an alert when no network is ...
3
votes
0answers
32 views
iPad App crash -Is there any limits for overall bytes allocated for any iPAd app? Will cause crash?
My new iPad app crashed which uses more images in webview.There is no memory leak tested with Instruments. Within 20 mins received message "Received Memory Warning" in log.
While checking with ...
2
votes
2answers
30 views
How do i get the contents of html that currently displaying on web view?
How do i get the current displaying contents of html in web view(epub).
Is there any way to get the current displying contents (view port contents) instead displying all contents using following ...
0
votes
1answer
9 views
Wanting to Push to UIViewContoller, from UIViewController via openURL and custom URL navigation
I'm currently working on an application that requires a new view to be pushed to when the user clicks on a URL (This new view contains a UIWebView with browser functions). I've got this working ...