Tagged Questions
1
vote
0answers
109 views
Change zoomScale and contentOffset of UIScrollView in UIApplicationStateBackground state
I know it's not recommended to change any view appearance when the application is moved to background state, but for my specific task I cannot postpone this activity and I really like to complete it ...
0
votes
0answers
64 views
Taking a snapshot of a UIWebView is missing UIWebViews
I've successfully managed to take snapshots of an htmls array I have stored locally. The problem is that if the html is small with only a string of text there's a good chance the process of ...
0
votes
0answers
35 views
stringByEvaluatingJavaScriptFromString results a lag in my animation
I'm using stringByEvaluatingJavaScriptFromString to clear my UIWebView of content before loading a new html on it. Other methods involving loadHTMLString to clear the UIWebView didn't helped. My ...
1
vote
2answers
120 views
Xcode 4.5 determine if uiwebview can scroll up
Do you guys have any ideas how to call a method every time a certain uiwebview is all the way up on the page ie. so that it can't scroll up? This function would be great to be able to refresh a page ...
0
votes
1answer
210 views
Disable dragging past top of UIWebView / UIScrollView (the “Pull to refresh” gesture)
I've got a UIWebView that I'd like the user to be able to scroll down, then back up again, but not pull the page back from the top (the gesture normally associated with pull to refresh). I don't want ...
0
votes
1answer
23 views
How to Swap 2 UIWebView
Is it possible to swap 2 UIWebView, like I need to swap the address of UIWebView* currentView & UIWebView* nextView?? is it possible?? The main problem is that UIWebView does not conform to ...
0
votes
0answers
238 views
Keep Facebook login when opening UIWebView
I've integrated new facebook ios sdk to my app, implemented authentication to facebok within my app, and implemente post to wall. I'm using internal facebook credentials stored in settings in iOS 6.
...
2
votes
2answers
1k views
Why Shouldn't A UIWebView Be Placed in a UIScrollView?
The Question
Does anyone know of technical reasons for avoiding web views inside scroll views on iOS (assuming you're willing to disable scrolling inside the web views themselves)?
If you look at ...
0
votes
1answer
198 views
3 UIWebView on UIScrollview crashes when leaf through
I've got 3 UIWebView on UIScrollView. User can scroll these webviews from left to right and back (5-15 pages).
When user scroll one page I move webviews and load new content to invisible one. I'm not ...
0
votes
1answer
150 views
UIWebView in iPhone only app displayed on iPad
I've got a question concerning a UIWebView in iPhone app (not a universal iPhone/iPad) displayed on an iPad. There are some ways to treat the application as a iPhone retina app (960x640), however I ...
0
votes
0answers
63 views
If a UIWebVIew loads a bad page, and WebKit crashes, can i handle this?
If one of my users clicks a link inside of my app, a view controller will be presented with a UIWebView inside to render this page. What if this page is somewhat malicious and has some sort of webkit ...
0
votes
0answers
196 views
UIWebView works fine in iPhone but not in iPad
Problem:
To display my target webpage using iphone , it works fine but displays doesn't show top portion of the page.
in horizontal orientation it gets blown up.
Tools:
xcode 4.3.3, ipad 5.1 and ...
1
vote
2answers
3k views
How to respond only to a single-tap gesture while letting objects behind respond to double-taps?
I'm displaying a document in a UIWebView. I want to place a hotspot over the document to trigger an action when it is tapped, but I also want to maintain the default UIWebView behavior of auto-zooming ...
0
votes
1answer
117 views
HTML lists in iOS using native functionality
Is it possible to create HTML lists such as ordered and unordered lists without using UIWebView?
Thanks
0
votes
1answer
191 views
specifying UIWebView Content size Or position
I'm using UIWebView to load .GIF images with the following code
UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.frame];
[self.view addSubview:webView];
[webView ...