1
vote
2answers
31 views

UIWebView's property scalesPageToFit = YES not working correctly on larger images

In an iphone app i have a webview in which i want to preview some image downloaded from internet, my problem is that the some images are not viewed as to fit in the frame of webview, but most do. I ...
0
votes
0answers
14 views

UIWebView stack traces have wrong line number

If I have some javascript like this loaded into a web view: <script> function testError() { try { functionDoesntExist(); } catch(err) { alert(err.stack[0]); } }; ...
0
votes
1answer
14 views

Prevent UIWebView from scrolling when datepicker comes into view

I have a form and an input field of type date <input type='date'> . When the field is tapped the datepicker comes into view but the web view scrolls up automatically as the picker becomes ...
0
votes
1answer
60 views

Moving a UIWebView on iOS

I'm working on an iOS application and I'm having trouble with the navigation. I'm new to xCode and my assumption is that most dynamic content will be handled through WebViews. My plan is to have 4 ...
2
votes
1answer
36 views

Whenever I use UIWebView loadHTMLString ,it's scrollView.contentOffset.y turns to 0

How can I let webView memorize webView.scrowView.contenOffSet localtion .So that when download new data has a animation frow down to up . [webView.scrollView setContentOffset:CGPointMake(0, 0) ...
0
votes
2answers
60 views

Get the response from UIWebview

I am implementing an application.In that i am using the loadWithhtmstring: method to load the html in web-view using this html, i am sending the data to server after executing that method,server ...
2
votes
1answer
39 views

Playing Video on UIWebView getting Access Denied

Hello Everyone i am trying to play video based on URL that i am getting through API but i am getting Error like Access Denied. The reason why i am playing video in UIWebView is because Video is not ...
0
votes
0answers
14 views

Prevent UIWebView from Freezing and Crashing After A Return to The App

My app uses the framework NimbleKit, which relies heavily on UIWebViews. Essentially there is only one large web view in the application, and thus it uses alot of memory. The issue is, after a user ...
0
votes
1answer
30 views

iPhone phonegap image disappearing after the phone sits for some time

I am using phonegap 2.0.0 on iOS and using basically the stock image capture code. After the image is captured it is saved to the phone, the URI is saved to the database along with the rest of the ...
0
votes
2answers
29 views

UIWebView execCommand Cut, Copy, Paste

I can't seem to get the execCommand for cut, copy, paste to work in a UIWebView that has contentEditable set to true. I am able to select the text using selectAll command but cut, copy, and paste do ...
0
votes
3answers
37 views

Segue passing uiimage and open in UIwebview

I would like to passing a uiimage from one view to another view which contains a uiwebview. So that i can allow easy interaction and gestures on the image. But i have no idea how to code in the ...
0
votes
0answers
34 views

webView:didFailLoadWithError - (null) phone gap app for ios

I'm getting this error while loading paypal checkout page. I'm using in app browser of phonegap for this.Any idea? webView:didFailLoadWithError - (null) *** WebKit discarded an uncaught exception in ...
0
votes
1answer
45 views

Display Rich Text Content as UIWebView or UILabel+CoreText

I'd like to display rich text content in my app. I want user to create simple WYSIWYG input with support of bold, italics, shadow, outline, image HTML-like tags. I am puzzled if I should go with ...
0
votes
1answer
30 views

stop playing automatically video in UIWebView in ios

I have a UIWebView in my view controller, and when I load the video, it starts playing automatically without user intervention. I used the code below: NSURL* videoUrl = [NSURL URLWithString:path]; ...
0
votes
1answer
29 views

why does my uiwebview not scale correctly?

I have a uiwebview that does not scale to the correct size unless the frame is 1/2 the width and 1/2 the height. The iphone is 960x640 but the webview doesn't appear to the correct size unless I set ...
0
votes
3answers
30 views

CATransition displays animation out of the desired view

I am using a CATranstion animation to move between multiple HTML pages in a UIWebView. [WebView loadHTMLString:htmlPage baseURL:nil]; CATransition *animation = [CATransition animation]; ...
0
votes
1answer
21 views

Is it possible to load Php file from local

I have PHP file in main bundle resource path. I need to invoke that file from my UIViewcontoller. But file is not invoking. code: NSString *pathToBundle = [[NSBundle mainBundle] bundlePath]; ...
0
votes
1answer
20 views

Html Tag doesn't get render properly in UIWebView

I am loading a html string in my UIWebView. Everything is working fine but when i tried to load a html containing <&reg > tag webview doesn't render it properly. Example if i have "Capital ...
1
vote
0answers
33 views

Rich Text Editor for iPad

I am developing an iPad app that contains a Rich Text Editor. I did some research and found an excellent tool called TinyMCE. I am trying to integrate TinyMCE in my app, has anybody succeeded in ...
0
votes
0answers
55 views

UIWebview resize height to fit content

I know this has been asked many times but I can not get it to work. In short my UIWebview pulls in some HTML which has a none fixed height (width always the same), I just want the height to change ...
0
votes
0answers
25 views

ios - Getting token from Google?

I'm new to iPhone development,I'm trying to get access token from Google,I load the data(Google,Yahoo,Facebook) from JSON url in UITableview,once I click the Google it redirects to UIWebview(Gmail ...
0
votes
4answers
31 views

Get touch in webView

I have add UIWebView on UIViewControllerthen add one another UIViewController on same ViewController then i want get touch on UIwebView.
0
votes
1answer
23 views

Draggable button in uiwebview

I am trying to make a draggable button inside my uiwebview, so when the website is displayed you can move the button around the screen. I can make the button move when it is just placed in the ...
0
votes
0answers
36 views

ios - How to use URLDecode?

I'm trying to get access token,I'm following this link http://www.stevesaxon.me/posts/2011/window-external-notify-in-ios-uiwebview/ to get that,but I'm getting some problem when decode URL.Please go ...
0
votes
1answer
25 views

Scaling webview animation

I have webview in a viewcontroller of size 50x50 (width and height). And I have button to scale/stretch the width and height of the webview. So whenever the button is pressed, I want to increase the ...
-1
votes
3answers
29 views

Getting NSNotification to Work?

I'm currently trying to get NSNotification to work but I'm having some trouble. I have two (2) ViewControllers: A. MainViewController & B. LoginViewController. In my MainViewController I have a ...
0
votes
1answer
23 views

Running a WebView Request In Another View, While Displaying a Different View?

I currently have a main view and a login view. I handle authentication in my login view (javascript injection and web scraping) and then load my main view with the right content. The problem is that I ...
0
votes
1answer
25 views

How make background circlular fade

I'm not sure what it's called, I have UIView with UIWebView in it, and I want make it exactly as the screen shot below while UIWebView is loading. Can anybody help me with that? Thanks
0
votes
1answer
25 views

Accessing UIWebView Information from another Class?

Hi everyone! to start off, my app involves web scraping and javascript injection authentication, since the site I'm trying to access data from, has no api (Don't worry it's legal). With that said ...
0
votes
1answer
23 views

Linking button to another viewcontroll (uiwebview)

can anyone help? I have two different view controllers in my storyboard. First controller has buttons which I want to connect to a second controller which is a uiwebview, for it to open a website, I ...
0
votes
1answer
49 views

UIWebView pinch zoom not working beyond a certain limit

I am using a UIWebView to render html content. I have done the following to enable the pinch zoom on the UIWebView: self.webView.scalesPageToFit = YES; This has enabled me to enable pinch zoom and ...
2
votes
0answers
13 views

CX innovatory storage integration in iphone

I'm developing an iPhone app where I'm integrating CX cloud storage so that I can store images and audio files. I"m trying to load login page on UIWebView but its giving me error. here is my code ...
0
votes
0answers
46 views

Unable to zoom UIWebView in iPhone

I have set frame of webview,but now zoom is not working fine.I have also set webView.scalesPageToFit = YES; I want to set webview fit to screen and also it should be zoom. How is it possible? ...
0
votes
0answers
43 views

ios - How to declare javascript in UIWebview?

I'm following this link to get access token http://www.stevesaxon.me/posts/2011/window-external-notify-in-ios-uiwebview/ According to Stevesaxon,I'm trying to invoke the javascript in the below ...
5
votes
1answer
82 views

UIWebView loading and general performance

I am using UIWebView to display textual content in my app (I store the content in local HTML files that I pack with the app). All together, I have three web views whose content I change dynamically ...
-1
votes
0answers
21 views

How to mimic window.open to fill javascript Object?

Some users of my app try to access a certain webpage. This webpage uses the following javascript code: SQLData = new Object; window.open( url, "getData", ...
-1
votes
2answers
50 views

Making font colour negative to the background. iOS

I want to make text in a UILabel appear of a color negative to that background it is placed on. I am placing the label on a web view, and I want that label to be always of a negative colour to the ...
0
votes
0answers
37 views

Caching Web pages in ios

I have created an iphone application which have integrated a uiwebview to load the web content. Now i need to cache the content for users to browse the pages without the internet. For this i have ...
0
votes
0answers
34 views

UIWebView isn't loading Google maps from maps API v3, but works on desktop browsers

Code below is used for loading Google MapView with the key and sensor being false. It didn't load the map. I could have debugged from browser if it hasn't worked on them, But they are loading so any ...
1
vote
0answers
60 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
1answer
35 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 ...
1
vote
1answer
66 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
46 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 ...
0
votes
0answers
17 views

Presenting new WebView on swipe

I have created a project for left and right swipe. I have a webview in my view controller which loads different links when I am swiping left or right. I have done little animations using ...
0
votes
1answer
52 views

HTML table data (<td>) screen co-ordinates or frame in UIWebView

I am using HTML to render some offline data in my application. I would be using the same HTML sources for different screen layouts, iPhone, iPad - landscape and portrait orientation. This means that ...
0
votes
1answer
32 views

Upload image to form in webview, without displaying image picker

I am trying to fill up a web form and submit data without letting the user see the web form itself. I have tried using AFNetworking to do HTTP POST in the background, but I bumped into a problem which ...
1
vote
0answers
135 views

How to get the caret's position in contentEditable div when entering a new line?

I am making a rich text editor with UIWebview, which uses a contentEditable div. I want to get the caret's position in pixels. I have searched a lot, and I got the code below. function ...
0
votes
0answers
41 views

can I detect a user on Mobile Safari (iphone) VS UIWebView (WebKit) with javascript?

I'd like to be able to tell the difference between a user hitting my website on normal Safari as included in iphone or ipad, VS a user who is hitting the same content through a UIWebView within a ...
-1
votes
1answer
45 views

UIWebView: delete cookies of a specified webview

I have two web views in which I want two run two different facebook accounts on both of these webviews. However, if I sign in on one webview the other webview automatically signs in as well as these ...
0
votes
0answers
17 views

Differentiate Touch and Swap Event in Javascrip

I have a image gallery which I used for swaping images. In gallery I used touchstart, touchmove, touchend and touchcancel events. But now I need to handle the touch event as well. So, I do I ...

1 2 3 4 5 55