1
vote
1answer
369 views
iPhone - Is it possible to hide native scrollbar in UIWebView?
I would like to hide the native scrollbar / scroller that appears when you are scrolling a UIWebView, but still keep the scrolling functionality intact. Is this possible?
Thanks in advance,
William
1
vote
1answer
35 views
Is there a way to programmatically scroll to a PDF page within a UIWebView?
It is possible to use JavaScript to set the pixel y-offset of a UIWebView, e.g.:
[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"scrollTo(0, %d)", offset]];
So is there …
1
vote
4answers
255 views
What works to pass touches through to (and display all) subviews?
I have the following subview chain:
UIViewController.view -+
|-> UIView (subclass) -+
| +-> UIToolbar
…
1
vote
2answers
23 views
iPhone Dev: UIWebView baseUrl to resources in Documents folder not App bundle
Hi everyone,
Greetings! Can anyone please kindly assist me finding a way around the following:
load an html into a UIWebView using loadHTMLString and include(using baseURL) the resources such as …
0
votes
0answers
19 views
UIWebView phone links detection on iphone
Hi, there is something strange in my code. I'm sure to forget something but i don't know what. I try to handle phone, sms mailto and http links in an UIWebView.
This is how i try :
1/ instantiate …
0
votes
0answers
27 views
UiWebView and Contact picker display problem on iPhone
Hi guys,
I'm using interface building to put a UiWebView inside a View on a main window. From javascript I call out to objective C where I display the native contact picker widget, something like …
0
votes
0answers
9 views
UIWebView scroll down
I use IUWebView like chat window and after adding new message in the bottom of view I wanna scroll down view programmicaly, how can I do it?
4
votes
13answers
3k views
Stop UIWebView from “bouncing” vertically ?
Hi there;
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 …
0
votes
0answers
10 views
Slideshow on UIWebview?
Is it possible to run a slideshow in UIWebview control on iPhone? When I open picasa on my UIWebview it does not show the top bar with slideshow button, as it shows in Safari.
Please help.
0
votes
2answers
50 views
Mobile Safari-style back button for UIWebView?
I haven't been able to find any sort UIBarButtonSystemItem representing tha "Back" button in Mobile Safari. I want my UIWebView's controls to look just like the ones in Mobile Safari so it makes …
0
votes
4answers
171 views
EXC_BAD_ACCESS in UIWebView
I just downloaded the crash reports for one of my iPhone apps from iTunes Connect. The most common crash has a trace like the following:
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: …
0
votes
1answer
33 views
iPhone SDK: Loading resources from custom URL scheme
Hi,
I have HTML string which is created using an xml file by a third party library. The HTML string contains custom URLs for images and videos (Ex:image://). Is there is way by I can handle these …
0
votes
0answers
24 views
how can i select something in an uiwebview with code ?
hello ! can someone tell me how i can select something in an uiwebview with code ?
0
votes
2answers
58 views
Is it possible to use stringByEvaluatingJavaScriptFromString with Javascript which references local files?
I want to use stringByEvaluatingJavaScriptFromString to run a javascript which references local files (in this case css files, but potentially js files too) which are on the device (in the Documents …
1
vote
2answers
60 views
iPhone SDK - opening links in a UITextView in a web view
I have specified dataDetectorTypes on a UITextView so that URLs open in Safari when touched.
Is it possible to intercept this behaviour so I load the URL in a UIWebView instead? Or would I have …
