A class used to display web content from within an iOS application.

learn more… | top users | synonyms

1
vote
0answers
28 views

Is there a way to force Webview to login to Facebook using the native iOS 6 Facebook Credentials

I have a question regarding the facebook Comments using social Plugin on iOS6. I use social Framework to login into my app using facebook credentials set in the phone settings. Facebook loads the ...
0
votes
1answer
16 views

Ajax script doesn't work inside UIWebview

I was trying to implement the following situation. A view with a UIWebview inside where it load a php file over the internet.Inside the php there is a button where executes a script.After execution,i ...
0
votes
3answers
53 views

uiwebview not loading any content

I am not able to load any webpages. Any idea why this could be? The frame for the webview (printed from the debugger) <UIWebView: 0x8a49840; frame = (0 0; 320 241); autoresize = TM+BM; layer = ...
0
votes
1answer
30 views

Loading large HTML string into UIWebView using javascript

Usually, when I want to load an HTML string into a webview using javascript, I use something like this... NSString *htmlString = @"HTML String"; [webView ...
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
0answers
23 views

loading disk cache in offline mode

      I have read apple's document and find that disk cache is available from ios5.When a instance of UIWebView starts load with the internet cut,the method - ...
1
vote
0answers
23 views

Detect when UIWebView fails to load referenced files

I'm working with an app that makes extensive use of UIWebViews to display content loaded from the web. Most of the time this works well, but every once in a while (particularly on 3G) a connection ...
1
vote
1answer
23 views

Website Attached to App

How do I attach a website to an app in Xcode using the UIWebView? The only chunk of code in the assistant editor is: #import <UIKit/UIKit.h> @interface XYZAppDelegate : UIResponder ...
0
votes
1answer
8 views

Photoswipe rotation issue when in ios4 UIWebView

I am using photoswipe 3.0.5 in my ios application. Everything is working correctly in the simulator (ios 6.1), but when i run the app on my real device (ios4.3) and i rotate from portrait to landscape ...
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
1answer
29 views

How to show shuffling of images on webview like flash movies in ios?

What I exactly want is that I have an HTML code having swf file but as ios doesn't support flash. so i called api to get images from server. Now i want to write a code in html so that i can show ...
0
votes
1answer
55 views

Change return key (returnKeyType) on a contenteditable div in UIWebView

I would like to have a different returnKeyType on my keyboard when editing a contenteditable div in a UIWebView on iOS. I tried putting the contenteditable div inside a form and assigning it a ...
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
32 views

NSURLProtocol subclass canInitWithRequest request is nil

I am trying to watch ajax requests made in a UIWebView. I have registered a subclass of NSURLProtocol and am returning NO from canInitWithRequest. But the request argument to that method is always ...
0
votes
1answer
23 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
60 views

IOS UIView contains UIWebview with stale data - caching?

I currently have an app that has been published to the app store. I just notice there is a bug in one section of the app. This app requires a user login via POST method. Here is my scenario. Login ...
0
votes
1answer
24 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
45 views

UIWebView freezes when text is selected

My app, on very rare occasions, freezes when I select text in a UIWebView. Here's how it happens: Tap and hold to select text Text gets selected Whole app freezes, unresponsive to touch, but I can ...
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
24 views

UIWebView strange scrolling behaviour within tableview cell

I have a problem with my UIWebViews - they scrolls only if I touch and drag their content within small area (I filled it with yellow. Red area is the area which doesn't response to my touches when I'm ...
0
votes
1answer
46 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
73 views

iPad app iframe uiwebview autoplay youtube video

I have found so many answers on the workarounds to get autoplay to work on iPad apps playing youtube videos within a uiwebview. I've tried many of them and the ones that include javascript, I don't ...
-1
votes
0answers
18 views

UIMenuController shows only once on device

I managed to show a UIMenuController with custom items when selecting text on UIWebView subclass. After I scroll or try to select some other text, the menu won't appear. This happens only on device. ...
0
votes
0answers
44 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
65 views

void SendDelegateMessage(NSInvocation*): delegate (webView:decidePolicyForNavigationAction:request:frame:decisionListener:)

I am loading my webview with running image(banner) while continuously load webview . but sometimes i got warning of void SendDelegateMessage(NSInvocation*): delegate ...
0
votes
0answers
42 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
72 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 ...
0
votes
2answers
33 views

UIWebView displaying as a white screen

In my app, I have a view controller that contains a UIWebView. This View Controller has the UIWebView as an IBOutlet. When loading the view I just get a white screen with my navigation bar at the ...
0
votes
0answers
7 views

Implementing AutoScroll in UIWebView

Hello everybody, I'm stucked on auto scroll problem. I created UIViewController that has UIWebView inside. In viewDidLoad I give path to my pdf document. All this working. Question is how I can ...
0
votes
1answer
46 views

iOS: Scraping Data from a Site Requiring Authentication?

I want to scrape data off a site that requires authentication. However, even though I've come across many tutorials regarding scraping, I can't seem to find one that also mentions logging in. I know ...
0
votes
1answer
34 views

Trying to allow only certain strings into the URL bar

To sum it up, I have a browser in my app, and I want it to only launch 5 websites, nothing else. Is there a way I can make my browser just launch the 5 websites by setting customs strings, like an if ...
-1
votes
0answers
20 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", ...
0
votes
1answer
32 views

Trying to get an html page to appear in its entirety in iOS simulator

I have an html page that I am trying to display via a UIWebView inside my iOS app. Everything is working fine, except I can't view the entire page on the screen. I only see the top left corner, and ...
0
votes
1answer
30 views

Where to store html files in iOs app?

I've recently switched to working on an iOS app from Android, and am wondering where I should store the HTML files I'll be using in a WebView. Within an Android project, I've stored these files under ...
0
votes
1answer
47 views

UITableView prepareForSegue not pushing to UIWebView

I'm trying to push from WebListViewController to WebPageViewController, so when a cell is pressed it will push to a UIWebView to show the web article associated with it. But I just can't get it ...
-1
votes
1answer
49 views

How can I efficiently use multiple UIWebViews in my app? [closed]

I want to create a simple web browser like safari. Users can use multiple tabs at same time. When user clicks on the new tab button, my app creates a new UIWebView object on background and shows it. ...
0
votes
0answers
21 views

UIWebView goback and goforward method dosent work

i simply made a uiwebviewcontroller like this @interface WebViewController : UIViewController<UIWebViewDelegate> @property (nonatomic,readonly) UIWebView *webView; @property ...
0
votes
2answers
111 views

Disable bounce back in Mobile Safari Webview using css/js?

I've been trying to find the answer to this question without success. I am programming some webpages for a webview in MobileSafari. I do not have access to the Objective-C to disable the ...
-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
2answers
27 views

UIWebView serialization after content has been rendered

I have a very large HTML Document that I need to show in my app. It utilizes CSS Columns, and scrolls horizontally. What I try to do is archive the UIWebView that renders the document in its current ...
1
vote
1answer
56 views

Embedded timeline widget of Twitter not working

I created a twitter widget and plugged it into an app. I have integrated this html code in UIWebView i.e. NSString *html="<html><body><a class=\"twitter-timeline\" ...
0
votes
1answer
58 views

youtube in iframe via uiwebview specify dimensions that don't cut off when rotated to landscape

I'm making an iPad app that loads a youtube video. I was able to get a UIWebView to load a youtube video with some iframe code found online. I need to be able to rotate the iPad and not have the video ...
0
votes
1answer
58 views

How to check if UIWebView loads from NSURLCache?

I actually have more than one question regarding this... I'm still new to NSURLCache and UIWebViews but somehow got the basics down I think. Anyway, I was able to successfully implement Caching for ...
0
votes
0answers
25 views

iPhone App needs to Load PHP Generated URL

Lets say an App needs to present a city's weather forecast webpage in a UIWebView - except the URL for this page will change according to whatever City the user chooses from a menu of 15 cities. So ...
0
votes
2answers
146 views

Resize UIWebView on webViewDidFinishDownload dilemma

Suppose that I have a UIWebView that's stacked against a UIImageView (or some other view): I want to resize my UIWebView so that I know where to put the UIImageView. The way I do it is to wait for ...
0
votes
0answers
33 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 ...

1 2 3 4 5 111