0
votes
1answer
11 views

Checking the UIWebView's URL

So I have an image that I would like to hide only if my UIWebView is currently on a certain URL. For example, if "example1.com/cheese" was currently being displayed in my UIWebView, then I will hide ...
0
votes
1answer
15 views

Back Button on UIWebView

I'm trying to figure out how to create a back button that allows the user to go back one page. I read through Apple's Docs (which still go way over my head) and found out that I need to setup the ...
0
votes
0answers
12 views

UIWebView Navigation type is received LinkClicked for form submission

In a WebView when I click on a button which actually submits a form, in the shouldStartLoadWithRequest method I receive navigation type as UIWebViewNavigationTypeLinkClicked instead of receiving ...
0
votes
0answers
5 views

UIWebView, Youtube video loading icon is not centered

I've embedded a Youtube video in the UIWebview web page with this code: <iframe name="player" id="player" src="http://www.youtube.com/embed/{$firstParsedVideo}?HD=1;rel=0;showinfo=0" width="279" ...
0
votes
0answers
11 views

UIWebView, Youtube iframe videos: audio is available with headphones only?

I have embedded a youtube video in a UIWebView with the following code: <iframe name="player" id="player" src="http://www.youtube.com/embed/{$firstParsedVideo}?HD=1;rel=0;showinfo=0" width="279" ...
0
votes
0answers
5 views

Link “Watch on youtube” doesn't work from iOS UIWebView?

I've embedded a youtube iFrame to play videos in a UIWebView web page. The link "watch on youtube" doesn't work: The code is: <iframe name="player" id="player" ...
0
votes
0answers
9 views

Multiple UIWebviews - javascript processing

I have a few questions for subject I am digging for some time: Having two UIWebViews presented in one view, they load Javascript and are meant to process it. In actual state only one of them process ...
1
vote
2answers
37 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
1answer
28 views

UIWebView -> “Add to Reading list is not displaying”

I have a UIWebView and I open a website in it. The website contains lot of hyperlinks. I get an action sheet when I long-press it in Safari: Add to Reading list, Copy and Open are displaying. ...
0
votes
1answer
24 views

Download and cache entire web page on ios

I need to download an entire webPage and store it in app's documents directory and load it from the cache the next time user visits. No matter how much I search, I always end up with ...
0
votes
1answer
10 views

Add a Webview Window to a existent iOS App that loads local stored HTML

Add a Webview Window to a existent iOS App that loads local stored HTML ... i am working on a app that loads a feed RSS and thats already done, but now the app needs a section that can be updated on a ...
1
vote
1answer
24 views

Stopping a video stream when UIViewController is closed

I have a UIViewController with a UIWebView with the URL pointing to a video on my website which loads and streams fine when the page is opened. I then have a Back button on the same page to take me ...
0
votes
0answers
11 views

In the UIWebView only the first youtube video of a list is correctly clickable

In my UIWebView I have a list of youtube videos and only the first video in the list is playable. All the other videos are not, unless I click on the bottom area of each video (below the play arrow). ...
0
votes
0answers
28 views

Sending keydown to UIWebView

I'm trying to simulate a keydown event to a UIWebView. A simulation is running in the UIWebView and I want to be able to click a UIButton to send keydown events. (Well, I wish iOS would let me send ...
0
votes
0answers
9 views

Images are loaded slowly in my UIWebView, if the web page is too short

I have a weird issue with images in my UIWebView. Shortly, if the loaded web page is too short, the images are loaded with 2 seconds of delay. Instead, if the web page height is bigger than the ...
-1
votes
1answer
29 views

to check whether website exist for pointing URl in ios [closed]

i want to know whether website for URL exist or not without sending synchronous request coz synchronous request some times may lead to close the app according to apple rule
0
votes
1answer
61 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
39 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
0answers
33 views

Find input elementID of the input field that the user has selected

I have a uiwebview and have loaded a document from a server. The web document has several text input fields. How do I determine the ID or name of the field that the user has touched - selected. I ...
0
votes
0answers
24 views

Unclikable “watch on youtube” link when embedding into iOS (and Android?) due to overlapping <video> element

We are trying to embed YouTube videos into iOS WebFrame (whole frame is actually just a box for YouTube iFrame). Certain videos are not playable in the app unfortunately. For example, you can get ...
-4
votes
0answers
41 views

iOS. Create a facebook page request for authorized user for UIWebView? [closed]

I load a webpage into UIWebView. Then I login using facebook SDK. Then I update my UIWebView but it still shows that I'm not authorized. How to construct a correct request now? Or are there any ...
0
votes
2answers
61 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 ...
-1
votes
0answers
29 views

UIImageView instead of UIActivityIndicatorView - Xcode

I have local HTML files in my project and UIWebViews that load them. I currently have a UIActivityIndicatorView set when the UIWebView is loading. I want to replace this with a Single Image that does ...
0
votes
0answers
16 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
22 views

How to identify UIWebView as Safari

Hi my UIWebView is identifying as Mozzila/5.0 (iPhone; CPU iPhone OS 6_1_2 like Mac OS X), and Safari is identifying as Safari iOS6. And the webpage that I want load with UIWebView only support ...
0
votes
1answer
32 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
0answers
15 views

youtube video in UIWebView does not raise any notification

I have a UIWebView used for displaying webpages. It works fine, except for youtube videos. It is expected that, when clicked fullscreen, the YouTube video opens within an moviePlayer interface, ...
0
votes
1answer
24 views

Prevent UIWebView From Scrolling Too Far

I have two buttons, a scroll up and a scroll down that are used to scroll the webpage in a UIWebView. The only issue is, once they hit the top or bottom of the page they can keep scrolling. They can ...
0
votes
1answer
10 views

CGPoint values in setContentOffset

So, I'm making a scroll up and a scroll down button on a UIWebView. Ideally, the user will have the option to scroll through it with their finger, or by tapping the button. Like when they tap the ...
0
votes
0answers
40 views

how to fit file in UIWebView

I have iPad project where I have ppt and pptx files and I am trying to open them in UIWebView. All is working perfect but the problem is with pptx files. When I open ppt files, right side of text ...
0
votes
0answers
25 views

returning back from displayed image in UIWebview

I am displaying html string in webview, content includes an image also. Tapping on the image opens the image in whole webview (covering the whole webview ). I am not able to return back to the main ...
0
votes
2answers
30 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
0answers
17 views

Cached images in UIWebView take longer to load? (NSURLProtocol?)

I'm serving up local images to my UIWebView via NSURLProtocol (which means the image is returned almost immediately), but I'm experiencing an issue where cached images (images being displayed again ...
1
vote
1answer
38 views

Scroll Buttons on a UIWebView

So I'm trying to put two buttons on a UIWebView, a scroll up and a scroll down button. Ideally, the user will have the option to scroll through it with their finger, or by tapping the button. Like ...
0
votes
2answers
30 views

iOS: Block Other Domains in UIWebView

So I'm writing my first app, and have a quick question about blocking other domains in UIWebView. I would like to restrict navigation to my website, and my partner website only. So, if there happens ...
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 ...
1
vote
2answers
48 views

Downloading pdf is not working

I am trying to download locally the PDF that is there on my UIWebView using code mentioned below. Save PDF which is displayed by UIWebView locally When I type, NSLog(@"pdfille==%@", pdfFile);, I see ...
0
votes
0answers
39 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
55 views

Will I have trouble in Apple's review process for “messing” with UIWebView? [closed]

I'm planning to control how long of a touch is required before UIWebView initiates a text selection, and I'm planning on doing this by getting the UIWebBrowserView subview and changing the duration of ...
0
votes
1answer
48 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 ...
1
vote
2answers
44 views

UIWebview caching to disk

I have a simple iOS app that loads and list of links and presents them in a UIWebview. The app, when installed, is ~2MB. After clicking around through some of the links, I noticed that the disk usage ...
0
votes
1answer
33 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]; ...
1
vote
1answer
49 views

iOS Force user to watch a YouTube video

Im using this code to play a commercial video in my iOS application: - (void)embedYouTube:(NSString *)urlString frame:(CGRect)frame { UIWebView *videoView = [[UIWebView alloc] initWithFrame:frame]; ...
1
vote
1answer
48 views

Autofill UIWebView

I've been looking around, and have found lot of code for autofilling that looks like: - (void)webViewDidFinishLoad:(UIWebView *)webView { //For Authentication NSString *savedUsername = @"Bapu"; ...
0
votes
2answers
37 views

stringByEvaluatingJavaScriptFromString not working on UIWebview to stop html5 video

i'm trying to stop a html5 video with the following statement for an UIWebview element [webView stringByEvaluatingJavaScriptFromString: @"document.querySelector('video').pause();"]; but it don't ...
0
votes
1answer
23 views

Override Native iOS Video Player done button

Hi I have an html5 video player on my UIWebView, as you may know when I click on the play button the native video player takes control, how can I override the "done" button so I can close the video ...
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
1answer
25 views

changing the orientation of a video loading in iframe

I load a youtube video in an iframe in my ios app, the code for which is below: NSString *htmlString = [NSString stringWithFormat:@"<html><head> <meta name = \"viewport\" content = ...
0
votes
0answers
49 views

how to custom UIWebView in xcode

I create one application that display file with UIWebView. I want display .pdf format in UIWeb and I could do it. now I want custom UIWebView. in my uploaded image you see 2 part. (first status page ...
0
votes
1answer
20 views

UIWebView iOS not display Yahoo confirm SMS Security

I try to develop an Application using Yahoo SDK. When App show a webview with url : https://api.login.yahoo.com/oauth/v2/request_auth?oauth_token=.... Then I input my username and account to ...

1 2 3 4 5 51