Tagged Questions
0
votes
1answer
45 views
webViewDidFinishLoad did finish loading but didn't finish showing content on screen
I'm using webViewDidFinishLoad a lot in my app and there's something about UIWebView that really bugs me, well, actually two things.
The first, when I load new content to a UIWebView I will see for ...
1
vote
0answers
32 views
Disabling autocapitalize for a contenteditable div within a UIWebView
I have a UIWebView which loads a basic html page with a contenteditable div. This div has the following attributes:
<div id="editor"
contenteditable="true"
autocapitalize="none"
...
0
votes
2answers
34 views
Check whether the request loaded in UIWebView
I have a UIWebview where I'm loading a URL from the server. Everything is working well, but the page is loading slowly in the web view. While it is loading, I have to show an activity indicator.
I ...
0
votes
0answers
45 views
UIWebView CALayer renderInContext Crash or How to Capture Big Webpage Screenshot
When I take a full screenshot of the webpage I use
[webView.layer renderInContext:UIGraphicsGetCurrentContext()];
which gives me a crash for very big web pages. I discovered I am not the only one ...
1
vote
0answers
48 views
Core Graphics vs WebView for PDF display in iOS
I am working on this project where I am required to display PDF files. I have two options to do this.
Using the UIWebView
Using Core Graphics
I've done some reading regarding both the approaches ...
2
votes
2answers
97 views
Load UIImage form NSData in UIWebView and center it
So I basically get an NSData of UIImage and I use a UIWebView to display it. I do it that way:
[self.view addSubview:webView];
webView.delegate = self;
webView.scalesPageToFit = YES;
...
-1
votes
2answers
53 views
WebView:How to detect if I am on the original web page and execute a certain method
I have this method that goes back to previous webpage in a web view under certain circumstance and it works fine. However, I want to implement a function that checks if I am on the original web page ...
0
votes
1answer
81 views
UIWebView lower loading time with a more efficient way
I'm downloading multiply htmls and save them locally as strings in an NSArray.
Then I'm using 3 UIWebViews to load the content. The user always sees one UIWebView and 2 more UIWebViews are loaded in ...
-1
votes
1answer
82 views
UIWebView delegate method not called
The BOOL function isn't working on these web views. I am wondering how do I fix it so that is. I am probably missing some small detail.
-(void)viewDidLoad{
UIWebView *webView = [[UIWebView ...
0
votes
1answer
91 views
failed to return after waiting 10 seconds although getting a BOOL back
I'm trying to show a fully loaded webview. I don't want the user to see the webview in the loading process. I'm handling a few webviews at a time and using webViewDidFinishLoad makes it a lot more ...
1
vote
5answers
175 views
Show UIWebView inside Cocoa Touch Library
I am working in a new Cocoa Touch Library and I need to show a UIWebView programatically because I'm going to request user and password (like oAuth) in a external web but I don't know how can I do ...
0
votes
1answer
131 views
Loading UIWebView from UITableView works only 1st time
I'm using rubymotion with promotion framework to develop my first iOS application. I have a table view (inside navigation controller), tapping on a table cell opens new screen with web view that loads ...
1
vote
3answers
95 views
Showing html file using UIWebView
I have created a UIWebView and used a HTML file to display some contents. But when I run it instead of showing the contents only the whole HTML file coding is coming in the WebView. Please help and ...
1
vote
2answers
46 views
Restrict the number of times a button can be tapped
Is it possible to restrict number of times a button can be hit in a certain time frame? I have an activity indicator and refresh button on a web view in my app. I have the refresh button working, but ...
1
vote
2answers
147 views
How to get UIWebView working
(Link to errors here: http://imgur.com/a/AF87N)
I'm starting to work on iOS development, and I'm relatively new.
I was looking for tutorials on how to display web content in the app, and so I used ...