active questions tagged uiwebview - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:03:04Z http://stackoverflow.com/feeds/tag/uiwebview http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1808063/scrollstotop-doesnt-work-when-uiwebview-used-with-pushviewcontroller-looking-fo 1 scrollsToTop doesn't work when UIWebView used with pushViewController, looking for solution theLastNightTrain 2009-11-27T10:53:42Z 2009-12-03T16:26:16Z <p>I have an app with a table view at the root in a navigation controller, and on selection of a table cell it displays a new view controller that contains only a UIWebView (with a toolbar and a navbar).</p> <p>Depending on how I present the new web view, the feature where the user can tap on the status bar at the top and have the webview scroll to the top, either works or doesn't work.</p> <p>If I use:</p> <ul> <li>(void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated</li> </ul> <p>on the RootView, then the webview does scroll to the top.</p> <p>If I change that one line of code and instead use:</p> <ul> <li>(void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated</li> </ul> <p>on the navigation controller, then the scrollsToTop feature stops working.</p> <p>What I really want to use however, for other reasons in the context of the app, is the pushViewController method. BUT, I also want to keep the scrollsToTop behaviour.</p> <p>I have so far tried various approaches, some described here:</p> <p>-Attempting to set the webview internal scrollView scrollsToTop property</p> <pre><code>((UIScrollView *)[[webView valueForKey:@"_internal"] valueForKey:@"scroller"]).scrollsToTop = YES; </code></pre> <p>(No discernible effect).</p> <p>-Changing the ordering of setting NavBar properties or not setting any at all -Adding extra "window makeKeyAndOrderFront" calls after the new view push.</p> <p>I don't believe there are other views there that could be claiming the "scrollsToTop" property (and the first test above proves that in any case).</p> <p>Short of attempting to embed UIWebView into a UIScrollView, which I expect will be painful, I have run out of routes to explore to resolve this issue.</p> <p>I am hoping someone else has found a way to correct this?</p> http://stackoverflow.com/questions/1835007/uiwebview-in-a-uinavigationcontroller 0 UIWebView in a UINavigationController John Smith 2009-12-02T18:51:15Z 2009-12-03T15:02:49Z <p>How can I control the title which appears in the UINavigationController with a web page which appears in a UIWebView?</p> <p>I am trying to get the UINavigationController title to reflect the title of the web page.</p> http://stackoverflow.com/questions/1840355/uiwebview-shouldstartloadwithrequest-only-called-once 0 UIWebView shouldStartLoadWithRequest only called once?? Alex B 2009-12-03T14:48:35Z 2009-12-03T14:48:35Z <p>In my iPhone app, I have a UIWebView where I'm loading a local html. Everything works up just fine, but now I want to be able to handle local links (to footnotes): when I click on a local link, I want to be able to jump to the footnote refered by it, then be able to come back. </p> <pre><code>&lt;a href="#tofootnote"&gt;jump to footnote&lt;/a&gt; </code></pre> <p>I handled this by adding my code to shouldStartLoadWithRequest and intercepting local link clicks; when a local link is clicked, I work my magic (hide some ui elements, add a back button, etc..); clicking on the back button jumps me back to the original location in the html document. </p> <p>The problem is that clicking ONCE AGAIN on the link no longer calls shouldStartLoadWithRequest. I.e., the following code:</p> <pre><code>- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { NSLog(@"foo bar"); return YES; } </code></pre> <p>only displays "foo bar" ONCE (actually, twice - the first time when I'm initially loading the document), but only ONCE afterwards, regardless of how many times I'm clicking on the local link</p> <p>So, unless anyone has a better explanation, I'm guessing that the UIWebView caches the doc or link or something and no longer calls the handler after the initial call; If this is the case, how can I clear this internal cache up? (without reloading the document)</p> http://stackoverflow.com/questions/1836554/programatically-resize-a-uiviewcontroller-based-on-its-container 0 Programatically resize a UIViewController based on its container hgpc 2009-12-02T23:13:03Z 2009-12-03T00:02:47Z <p>I have a simple UIViewController with just a UIWebView. The UIWebView should take all available space to show the content of an url.</p> <p>I would like to reuse this ViewController in various places. In some cases it will be pushed into a NavigationController, in some it will be shown as a ModalViewController. Sometimes it might be inside a TabBarController. The size of the UIWebView will vary from case to case.</p> <p>What's the best way to set the frame of the UIWebView without using the Interface Builder? In other words, how should I initialize webViewFrame in the following code? Or is there something else I'm missing? </p> <pre><code>- (void)viewDidLoad { [super viewDidLoad]; UIWebView* webView = [[UIWebView alloc] initWithFrame:webViewFrame]; webView.delegate = self; NSURLRequest* request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0]; [webView loadRequest:request]; [self.view addSubview:webView]; [webView release]; } </code></pre> <p>I have tried with different possibilities (self.view.frame, self.navigationController.view.frame, etc.), but nothing seems to work for all cases.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1832128/how-to-use-anyother-map-like-google-maps-in-uiwebview-in-iphone 0 How to use anyother map like google maps in UIWebView in iphone? wolverine 2009-12-02T10:48:03Z 2009-12-02T11:39:19Z <p>I have done google map in UIWebView and it works perfectly with routing stuff and all. But now i want to load some other map into the WebView and get all the features that i get from google maps. How can i do it?</p> <p>For eg: I want to load this one to the UIWebView. <a href="http://stage.discoveritalia.it/conbipel/" rel="nofollow">http://stage.discoveritalia.it/conbipel/</a> .This is an italian map. I want to use it in the same way as google maps works in an iphone app. Plz help me.</p> http://stackoverflow.com/questions/500761/stop-uiwebview-from-bouncing-vertically 4 Stop UIWebView from "bouncing" vertically ? Brad Parks 2009-02-01T13:08:30Z 2009-12-02T03:27:27Z <p>Hi there;</p> <p>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 web page I had loaded?</p> <p>I've looked at the following possible solutions, but none of them worked for me:</p> <p><a href="http://www.iphonedevsdk.com/forum/iphone-sdk-development/996-turn-off-scrolling-bounces-uiwebview.html" rel="nofollow">http://www.iphonedevsdk.com/forum/iphone-sdk-development/996-turn-off-scrolling-bounces-uiwebview.html</a></p> <p><a href="http://forums.macrumors.com/showthread.php?t=619534" rel="nofollow">http://forums.macrumors.com/showthread.php?t=619534</a></p> <p><a href="http://stackoverflow.com/questions/173786/how-do-i-stop-a-uiscrollview-from-bouncing-horizontally">http://stackoverflow.com/questions/173786/how-do-i-stop-a-uiscrollview-from-bouncing-horizontally</a></p> <p>Thanks!</p> <p>Brad</p> http://stackoverflow.com/questions/1818341/why-does-uiwebview-link-click-error-out 0 Why does UIWebView link click error out? 4thSpace 2009-11-30T07:36:32Z 2009-11-30T16:28:51Z <p>I have a UIWebView (webview) with one link in it. I have implemented UIWebViewDelegate for this class. When I click the link, the page loads but I get an error.</p> <pre><code>- (void)viewDidLoad { [super viewDidLoad]; webview.delegate = self; NSString *html = @"&lt;html&gt; \n" "&lt;head&gt; \n" "&lt;/head&gt;&lt;body&gt; \n" "&lt;p&gt;&lt;b&gt;&lt;a href='http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer_Class/Reference/NSTimer.html'&gt;click here&lt;/a&gt;&lt;/b&gt;&lt;/p&gt; \n" "&lt;/body&gt; \n" "&lt;/html&gt;"; [webview loadHTMLString:html baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];} - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { NSLog(@"the error is: %@", error); } </code></pre> <p>Error output is:</p> <pre><code>the error is: Error Domain=WebKitErrorDomain Code=101 UserInfo=0x3814410 "Operation could not be completed. (WebKitErrorDomain error 101.)" </code></pre> <p>However, this link works fine: <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer%5FClass" rel="nofollow">http://developer.apple.com/mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSTimer%5FClass</a></p> <p>Any ideas on what the difference is?</p> http://stackoverflow.com/questions/1724863/problem-with-the-scrollbar-of-a-uiwebview 0 Problem with the scrollbar of a UIWebView Paulo Ferreira 2009-11-12T19:44:55Z 2009-11-28T18:49:25Z <p>Hi there! Im using a UIWebView to access a website, when i rotate the phone (landscape) the UIWebView is properly resized and the scrollbar are on the right place (on the right edge...) but when i acess any of input fields to fill the information required and exit it the UIWebView scrollbar jumps to the middle of screen (looks like it get back to 320, the width of the screen on portrait). Some useful info, this program was created using IB, have lots of outlets, im thinking about in do (redo) everything programmatically cause i was not the author of the first version... If anyone have seen this before plz let me know..</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1790346/uiwebview-scaling-image-independently-from-text 0 UIWebView - scaling image independently from text Dmitry Khalatov 2009-11-24T14:14:56Z 2009-11-28T08:35:25Z <p>I would like to diplay HTML in iPhone UIWebView. My HTML looks like</p> <pre><code>text text &lt;img src.../&gt; text text </code></pre> <p>How can I cause the component (via JavaScript or Objective C) to fit the image size to a window - i.e text size will remain the same but image will be reduced/enlarged proportionally to prevent horizontal scrolling ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1785732/navigate-a-webview 0 Navigate a WebView randy fernando 2009-11-23T20:30:23Z 2009-11-25T22:11:52Z <p>Hi,</p> <p>With a webview is it possible to set up a simple 'Back' button (either in a navigation bar or a top toolbar) that doesn't show the back button on the first URL of the WebView - and only appearing on a second URL to get back to the first?</p> <p>Unless I'm getting getting this wrong, in a lot of hybrid native/web apps such as News apps, you often see news articles in a table (HTML page rather than a 'programmed in xcode' table) which hyperlink to article detail pages (again, HTML rather than natively coded) - what I can't figure, is how the detail page (2nd URL in webview) displays with a 'back button' but the table (1st URL in webview) doesn't have the button showing in these type of apps?</p> <p>Currently, I have a webview as described, with a 'back' bar button item in a toolbar at the top of screen (outlet as 'cangoback' for WebView) but the button is visible right from the start when there's no page to 'go back' to - </p> <p>What I've got simply is:</p> <p>Webview - 1st URL, HTML table - 'back' button shows, but isn't active (of course)</p> <p>Webview - 2nd URL, HTML detail page - 'back' button shows, and can go back.</p> <p>How do you get it to only appear on 2nd URL, or be HIDDEN on 1st URL?</p> <p>Regards Randy</p> <p>EDIT (25th November)</p> <p>Here's my h:</p> <pre><code> #import &lt;UIKit/UIKit.h&gt; #import "FilmnoirNavController.h" @interface FilmnoirViewController : UIViewController &lt;UIWebViewDelegate&gt; { IBOutlet UIWebView *webView; IBOutlet UIBarButtonItem *backButton; } @property (nonatomic, retain) UIWebView *webView; @property (nonatomic, retain) UIBarButtonItem *backButton; - (IBAction)backButtonClicked:(id)sender; @end </code></pre> <p>and here's my m:</p> <pre><code>#import "FilmnoirViewController.h" @implementation FilmnoirViewController @synthesize webView; @synthesize backButton; - (IBAction)backButtonClicked:(id)sender { [webView goBack]; } - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) { // Initialization code } return self; } /* Implement loadView if you want to create a view hierarchy programmatically - (void)loadView { } */ /* If you need to do additional setup after loading the view, override viewDidLoad. */ - (void)viewDidLoad { NSString *urlAddress = @"http://www.filmsite.org/filmnoir.html"; //Create a URL object. NSURL *url = [NSURL URLWithString:urlAddress]; //URL Requst Object NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; //Load the request in the UIWebView. [webView loadRequest:requestObj]; } - (void)webViewDidFinishLoad { // Other stuff if necessary... // Could use hidden instead of enabled if you don't even want // the button to be visible backButton.enabled = (webView.canGoBack); } - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationPortrait); } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview // Release anything that's not essential, such as cached data } - (void)dealloc { [webView release]; [super dealloc]; } @end </code></pre> <p>My IB layout:</p> <pre><code>Filmnoir View Controller (Film noir) &gt; View &gt;&gt;Web View &gt;&gt;Tool Bar &gt;&gt;&gt;Bar Button Item (Back) </code></pre> <p>Thought I had it with something like this to hide the backButton:</p> <pre><code>- (void)webViewDidFinishLoad { BOOL ableToGoBack = [webView canGoBack]; if (ableToGoBack == NO) { [backButton setHidden:YES]; } else { [backButton setHidden:NO]; } </code></pre> <p>but warning says a UIbarButton item may not respond to setHidden - and indeed it doesn't.</p> http://stackoverflow.com/questions/646809/how-do-i-use-a-uiwebview-in-a-table-cell 7 How do I use a UIWebView in a Table Cell? bpapa 2009-03-14T21:54:08Z 2009-11-25T16:34:23Z <p>I'm building a table with some text that is HTML, so I am using a UIWebView as a subview of my custom table cells. I already ran into one problem - as I scrolled down in the table, it would take the UIWebViews a second to update. For example, I'd be viewing Cells at rows numbered 1, 2, and 3. I'd scroll down to say 8, 9, and 10. For a moment, the content of the UIWebView that was visible in cell #8 was the content from cell #1, the content in cell #9 was that from cell #2, and so on. </p> <p>I learned that the problem was that UIWebViews simply render their text slowly. It was suggested to instead preload the content into the UIWebView as soon as I could instead of waiting until the table receives the cellForRowAtIndexPath. So now, I have a Domain Object which before just had the text content of the WebView - but now it actually has a reference to the UIWebView itself. </p> <p>But now some of the content in the UIWebView renders, and when I scroll through the table the UIWebView shows only as a grey box. If I touch the grey box, it will actually receive the touch and update the WebView - for example if I touch a link (which I may or may not do, since the box is gray and it would be by a stroke of luck), the page that was linked to will be requested and displayed properly.</p> <pre><code>- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) { // I suppose this isn't necessary since I am just getting it from the // Domain Object anyway content = [[UIWebView alloc] initWithFrame:CGRectZero]; content.backgroundColor = [UIColor blackColor]; [self addSubview:content]; [content release]; } return self; } // called by cellForRowAtIndexPath - (void)setMyDomainObject:(MyDomainObject*)anObject { UIWebView *contentWebView = anObject.contentWebView; int contentIndex = [self.subviews indexOfObject:content]; [self insertSubview:contentWebView atIndex:contentIndex]; } </code></pre> http://stackoverflow.com/questions/1353501/uiviewcontrollers-and-uiwebview 0 UIViewControllers and UIWebView Doron Katz 2009-08-30T09:34:18Z 2009-11-24T16:00:18Z <p>Hi guys, I am a newbie at iPhone development and have a question, which may end up helping understand this concept in general.</p> <p>Basically, I have UIViewController which loads up a view with a bunch of stuff. Now I want when a user clicks on a button, to load up a different view, which happens to be a webView. Now, I want the weview to load up a different url depending on which button was pressed in the original view.</p> <p>how do i go about doing this? Basically in my head I thought i could load and swap the views when the button is pressed, like so:</p> <p>In </p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { NSString *selectedLink = [valuesForSection objectAtIndex:row]; NSString *urlAddress = @"http://www.google.com"; //Create a URL object. NSURL *url = [NSURL URLWithString:urlAddress]; //URL Requst Object NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; //Load the request in the UIWebView. [webView loadRequest:requestObj]; [self.view removeFromSuperview]; [self.view insertSubview:webView atIndex:0]; }</code></pre> <p>Is this the right way of doing it? Or how do i go about doing this?</p> http://stackoverflow.com/questions/589177/how-to-increase-font-size-in-uiwebview 1 how to increase font size in UIWebView unknown (google) 2009-02-26T05:02:31Z 2009-11-24T14:07:52Z <p>hi any one say , how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;</p> http://stackoverflow.com/questions/649478/iphone-streaming-audio-using-uiwebview-while-displaying-an-image 1 iPhone - streaming audio using UIWebView while displaying an image lostInTransit 2009-03-16T06:48:22Z 2009-11-24T11:30:16Z <p>Hi</p> <p>When we stream audio on an iPhone using the UIWebView, it uses the QuickTime player to display the audio which is playing along with the time bar and other controls. It also shows the QuickTime logo.</p> <p>Is there any way I can stream audio using UIWebView while displaying an image on the webview instead of the big QuickTime logo (something like creating own html page with img tag? But how do I add the audio to the html page?)</p> <p>Thanks.</p> http://stackoverflow.com/questions/1783074/disable-hyperlinks-in-uiwebview 0 Disable hyperlinks in UIWebView dkberktas 2009-11-23T13:16:43Z 2009-11-23T13:58:32Z <p>I want to disable hyperlinks in UIWebVIew after the initial page loaded without disabling the scrolling feature. That is, I should have user interaction enabled.</p> http://stackoverflow.com/questions/1776446/why-does-uiwebview-sizethatfits-give-a-larger-size-than-document-body-offseth 0 Why does -[UIWebView sizeThatFits:] give a larger size than document.body.offsetHeight/Width? Sbrocket 2009-11-21T19:20:48Z 2009-11-23T07:41:12Z <p>I am attempting to use a UIWebView to display some variable-size content, and I'd like to determine the full size of that content so that I can resize the UIWebView to fit the size of the content perfectly.</p> <p>My attempts at determining the correct height and width of the content, however, haven't been completely straightforward. The following attempt at testing methods for finding the size...</p> <pre><code>- (void)viewDidLoad { [super viewDidLoad]; self.webView.backgroundColor = [UIColor clearColor]; NSString *content = @"&lt;html&gt;&lt;body style='background-color: transparent; width: 300px; height: 500px'&gt;&lt;div id='ContentDiv'&gt;Content Here&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;"; [self.webView loadHTMLString:content baseURL:nil]; debugLog(@"Loading HTML string: %@", content); } - (void)webViewDidFinishLoad:(UIWebView *)webView { NSString *bodyHeight = [self.webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"]; NSString *bodyWidth = [self.webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetWidth"]; NSString *contentHeight = [self.webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('ContentDiv').offsetHeight"]; NSString *contentWidth = [self.webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('ContentDiv').offsetWidth"]; CGSize fittedSize = [self.webView sizeThatFits:CGSizeZero]; debugLog(@"document.body.offsetHeight/Width: {%@, %@}", bodyWidth, bodyHeight); debugLog(@"document.getElementbyId('ContentDiv').offsetHeight/Width: {%@, %@}", contentWidth, contentHeight); debugLog(@"sizeThatFits: %@", NSStringFromCGSize(fittedSize)); self.webView.frame = CGRectMake(0, 0, [contentWidth floatValue], [contentHeight floatValue]); } </code></pre> <p>...produces the following log results...</p> <pre><code>Loading HTML string: &lt;html&gt;&lt;body style='background-color: transparent; width: 300px; height: 500px'&gt;&lt;div id='ContentDiv'&gt;Content Here&lt;/div&gt;&lt;/body&gt;&lt;/html&gt; document.body.offsetHeight/Width: {300, 500} document.getElementbyId('ContentDiv').offsetHeight/Width: {300, 20} sizeThatFits: {308, 516} </code></pre> <p>While the first and second results make sense to me - the body size matches the size in the style attribute, and the div size fits the actual content - the third result does not make sense. Indeed, UIWebView seems to inset the actual HTML content by 8 pixels on some edges (top, bottom, and left in this case, it seems) such that the fitted size given by sizeThatFits: doesn't match up with the Javascript body height/width result.</p> <p>Can anyone give an explanation for this, and potentially a way to eliminate these insets? Thanks.</p> http://stackoverflow.com/questions/1769030/display-a-webpage-inside-a-uiwebview 0 Display a webpage inside a UIWebView ludo 2009-11-20T08:25:21Z 2009-11-23T03:13:15Z <p>Hi,</p> <p>I try to display a simple webpage inside my UIWebView without a Nib. The problem is when I click on my buttun a new page blanck page appear but nothing is display. Did I miss something?</p> <pre> - (void)loadView { UIView *topView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; UIWebView *web = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; self.webView = web; NSString *urlAddress = @"http://www.google.com"; NSURL *url = [[[NSURL alloc] initWithString:urlAddress] autorelease]; NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; [webView loadRequest:requestObj]; [topView addSubview:self.webView]; [web release]; } </pre> <p>thank you,</p> http://stackoverflow.com/questions/1780061/pass-website-url-from-tableview-to-webview 0 pass website URL from Tableview to webview Alok Kulkarni 2009-11-22T21:28:13Z 2009-11-22T21:28:13Z <p>HI I have created a NSMutablArray and add 8 objects to it in the RootViewController. I am displaying the array in the tableview. Whenever i click on the cell with a certain name, i want to pass a URL to the webview which is currently part of anothe DetailViewController.</p> <p>here is some code that i am trying to make it work from rootViewController NSString *selectCompany = [listOfItems objectAtIndex:indexPath.row];</p> <p>DetailViewController *dvView = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:[NSBundle mainBundle]];</p> <p>if (selectCompany = "Nihilent") {</p> <p>dvView.selectedCompany = @"http://www.nihilent.com";</p> <p>}else if (selectCompany = "TCS") {</p> <p>dvView.selectedCompany = @"http://www.tcs.com";</p> <p>Following code i have written in DetailViewController for the webview - (void)viewDidLoad { [super viewDidLoad];</p> <p>self.navigationItem.title = @"selected Company";</p> <p>NSLog(selectedCompany); webView.userInteractionEnabled = true; [webView loadRequest:[[NSURLRequest alloc] initWithURL:[[NSURL alloc] initWithString:@"selectedCompany"]]]; </p> <p>[self.navigationController pushViewController:webView animated:YES]; // [self.navigationController setView:webView]; [webView release];</p> <p>}</p> <p>The view loads currently whenever i select the cell, but the corresponding URL is never passed to the webView object and displayed in webview.</p> <p>please can someone guide me here and let me know how can i get this thing to work.</p> http://stackoverflow.com/questions/1778867/iphone-sdk-movie-player-in-uiwebview 0 iphone sdk: Movie Player in UIWebView Alex1987 2009-11-22T14:36:47Z 2009-11-22T14:52:59Z <p>Hi guys,</p> <p>As we all know if I want to download an mp4 file a iphone's movie player (MPMoviePlayerController) pops out and plays the video. My question is if I can get some kind of a message that it pops out or perhaps even to prevent it from appearing?</p> <p>Thanks</p> http://stackoverflow.com/questions/990870/handling-touches-inside-uiwebview 2 Handling touches inside UIWebview Biranchi 2009-06-13T15:29:13Z 2009-11-22T00:26:30Z <p>Hi all,</p> <p>I have created a subclass of UIWebView , and have implemented the touchesBegan, touchesMoved and touchesEnded methods.</p> <p>but the web view subclass is not handling the touche events.</p> <p>Is there any method to handle the touch events inside the UIWebView subclass ???</p> <p>Thanks...</p> http://stackoverflow.com/questions/1074320/remove-uiwebview-shadow 2 Remove UIWebView Shadow? dlewis23 2009-07-02T13:25:05Z 2009-11-20T20:07:03Z <p>Does anyone know if its possible to remove the shadow that is placed on the UIWebView window? </p> <p>Example: <a href="http://uploadingit.com/files/1173105_olub5/shadow.png" rel="nofollow">http://uploadingit.com/files/1173105_olub5/shadow.png</a></p> <p>If its possible how do you do it?</p> <p>Thanks</p> http://stackoverflow.com/questions/1263180/scrollable-uinavigationbar-similar-to-mobile-safari 0 Scrollable UINavigationBar similar to Mobile Safari Mike Rundle 2009-08-11T21:56:12Z 2009-11-20T17:24:33Z <p>My application uses a UINavigationController and the final view (detail view) lets you view an external website within the application using a UIWebView.</p> <p>I'd like to free up some additional screen real estate when the user is viewing a webpage and wanted to emulate how Safari on iPhone works where their URL bar at the top scrolls up and off the screen when you're viewing content in the UIWebView that's below the fold.</p> <p>Anyone have ideas on how to achieve this? If I set the navigationBarHidden property and roll my own custom bar at the top and set it and a UIWebView within a UIScrollView then there are scrolling issues in the UIWebView as it doesn't play nicely with other scrollable views.</p> http://stackoverflow.com/questions/1766746/uiwebview-with-links 0 UIWebView with links. codeMonkey 2009-11-19T21:37:41Z 2009-11-20T11:30:02Z <p>I am creating a webview and loading content using "loadHTMLString" The content is loading I just can't get the links to work ex linking to google.com. Any help would be great.</p> <pre><code>UIWebView* newWeb = [[UIWebView alloc initWithFrame:CGRectMake(notificationPopUp.frame.origin.x+ 20,notificationPopUp.frame.origin.y-100,100, 100)]; //newWeb.backgroundColor = [UIColor clearColor]; newWeb.alpha = 0.7; newWeb.opaque= NO; newWeb.delegate= self; NSString *html = [NSString stringWithFormat:@"&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;style type=\"text/css\"&gt;a{text-decoration:none}&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&lt;FONT COLOR=\"#484848\"&gt;&lt;p&gt;Hello this is a &lt;a href=\"http://www.google.com\"&gt;Test&lt;/a&gt;&lt;/p&gt;&lt;/FONT&gt;&lt;/body&gt;&lt;/html&gt;"]; [newWeb loadHTMLString:html baseURL:[NSURL URLWithString:@""]]; newWeb.userInteractionEnabled= TRUE; [notificationPopUp addSubview:newWeb]; </code></pre> http://stackoverflow.com/questions/1769888/how-to-display-the-authentication-challenge-in-uiwebview 0 How to display the Authentication Challenge in UIWebView? UVT 2009-11-20T11:28:32Z 2009-11-20T11:28:32Z <p>I am trying to access a secure website through UIWebView. When I access it through safari, i get an authentication challenge but the same does not appear in my UIWebView in the application. How can I make it appear?</p> <p>Any pointers, sample code or links will be very helpful. Thanks a lot. </p> http://stackoverflow.com/questions/1764170/uiwebview-is-not-loading-a-page 1 UIWebView is not loading a page. Tomer 2009-11-19T15:39:21Z 2009-11-19T18:31:54Z <p>I got a UITabBarController and one of the bar items is a Navigation Controller with some buttons on it. One of the buttons opens up a urlRequest and load it in a UIWebView.</p> <pre><code>NSURL * url = [NSURL URLWithString:myUrl]; NSURLRequest * urlRequest = [NSURLRequest requestWithURL:url]; UIWebView * web = [tView wView]; [web setScalesPageToFit:YES]; [web loadHTMLString:@"Loading" baseURL:nil]; [web loadRequest:urlRequest]; [self.navigationController pushViewController:tView animated:YES]; </code></pre> <p>For some reason when i click the button for the first time nothing happens.</p> <p>I used the UIWebViewDelegate protocol to debug it like so:</p> <pre><code>- (void)webViewDidStartLoad:(UIWebView *)webView { NSLog(@"webViewDidStartLoad"); } </code></pre> <p>When i click the button nothing happens, and i don't see the NSLog message. When i hit back and click the button again, i see the debug and everything works just find.</p> <p>Any idea what causing this ?</p> <p>P.S if i put the : <code>[self.navigationController pushViewController:tView animated:YES];</code></p> <p>in the webViewDidStarLoad method the application just hang, since it's not loading it on the first click.</p> http://stackoverflow.com/questions/1619802/uiwebview-resizes-text-after-rotating-looking-for-explanation-for-magical-bug-or 1 UIWebView resizes text after rotating: looking for explanation for magical bug or my stupidity sniurkst 2009-10-25T02:33:43Z 2009-11-19T13:38:44Z <p>Hello, all,</p> <p>so I have UIWebView in my application and I load some html (article) to it, put some CSS to make everything nicer. That's simple and clear and everything is perfect until I try to add reading in landscape functionality and then I've noticed that UIWebView ignores any css "font-size" I've put in HTML and increases font size drastically after rotating to landscape mode.</p> <p>I've spent about 4-5 hours (I'm new to programming Iphone application, but I'm quite stubborn when it comes to making something right) trying to fix it. Tried lots and lots of configuration options - NOTHING.</p> <p>And tonight something magical has happened. Just look at source:</p> <p><strong>Landscape with The Bug:</strong></p> <pre><code>r = CGRectMake(0.0, 0.0, 480.0, 320.0); [adView.view removeFromSuperview]; if (!isFullScreen) { minus = 50 + minus; [controlsView setFrame:CGRectMake(0, r.size.height - 50, r.size.width, 50)]; } else { minus = 20; } [textView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; [scrollView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; </code></pre> <p><strong>Landscape fixed (font size does not change anymore):</strong></p> <pre><code>r = CGRectMake(0.0, 0.0, 480.0, 320.0); [adView.view removeFromSuperview]; if (!isFullScreen) { minus = 50 + minus; [controlsView setFrame:CGRectMake(0, r.size.height - 50, r.size.width, 50)]; } else { minus = 20; } [textView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; [scrollView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; if (!isFullScreen) { minus = 1 + minus; } else { minus = 20+1; } [textView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; [scrollView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; </code></pre> <p>As you can see I only added the same code one more time and increased margin (minus) by one point. And did setFrame again (no, it doesn't fix the resizing with only one set of setFrames).</p> <p>I'm happy it works, but I would like to know HOW and WHY, so I can do it "right way", because now code looks stupid and have 1 point heigh margin at the bottom of application. </p> <p>And don't ask why I've tried to copy paste the same code again..</p> http://stackoverflow.com/questions/1320220/file-formats-supported-by-uiwebview 0 File Formats Supported by UIWebView Mugunth Kumar 2009-08-24T02:27:07Z 2009-11-17T14:50:38Z <p>What are all the file formats supported by UIWebView? In my testing, I found that it supports XLS, DOC, PPT, PDF but not XLSX, and DOCX, RTF.</p> <p>It supports image files like, JPG, PNG, GIF, BMP, not sure about TIFF or</p> <p>Exactly, what all types are supported is not clear...</p> <p>The UIWebView documentation also doesn't state it clearly.</p> <p>Could someone please help?</p> http://stackoverflow.com/questions/1747119/using-multiple-uiwebviews-in-a-uiscrollview 0 Using multiple UIWebViews in a UIScrollView Jugs 2009-11-17T07:13:23Z 2009-11-17T07:17:48Z <p>Hey Guys,</p> <p>I am using 5 UIWebViews in a UIScrollView to show the result of my game. Intention is to allow the user to scroll through the results screen. I had a problem where the UIWebViews won't load when scrolled to the next page. This means the first page will load successfully however when you scroll to Page 2, you will see a white blank page. Page is loaded as I can see the alert which was given in all the 5 pages, but it won't show.</p> <p>I tried a workaround as mentioned here</p> <p><a href="http://stackoverflow.com/questions/773386/inserting-various-views-into-uiscrollview">http://stackoverflow.com/questions/773386/inserting-various-views-into-uiscrollview</a></p> <p><a href="http://pinchzoom.com/blog/items/view/1386/one-of-the-problems-with-the-uikit-at-the-moment-is-an-issue-embedding-a-uiwebview-within-a-table" rel="nofollow">http://pinchzoom.com/blog/items/view/1386/one-of-the-problems-with-the-uikit-at-the-moment-is-an-issue-embedding-a-uiwebview-within-a-table</a></p> <p>This fixed my problem, however when I submitted the app to iTunes, it got rejected with the following comment.</p> <p><strong>*"3.3.1 Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs." The non-public API that is included in your application is <em>documentView</em></strong></p> <p>I would like to fix this issue and resubmit. Can someone help please ?</p> <p>Thanks Jugs</p> http://stackoverflow.com/questions/1738223/get-text-uiwebview-php-script 0 Get Text UIWebView PHP script Bryan 2009-11-15T17:42:10Z 2009-11-15T20:17:08Z <p>Basically my app has a UIwebView which loads a php script with input of user data. The script then uses printf(some info). This all works and it prints it right the UIWebView. Basically what I want to do is get that text (its all thats on the page) and save it as a string. Heres what I have tried so far.</p> <pre><code>NSString *str = [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.innerHTML"]; // also used document.documentElement.innerText and outerHTML and some others none seem to work NSLog(@"%@",str); </code></pre> <p>it returns nothing How exactly should I do this. I assume its pretty simple I just need the correct text to put in evaulatingjavascriptfromstring. I just can't find out what I should put in.</p> <p>Thnx,</p> <p>Bryan </p> http://stackoverflow.com/questions/1735736/download-store-view-and-manage-pdf-file 0 Download, store, view and manage PDF File Undolog 2009-11-14T21:56:45Z 2009-11-15T01:42:42Z <p>Hi, Can I download a PDF file and shows it without use UIWebView? I need to show PDF and get full control of its show...</p> <p>Also, Can I download and strore PDF into filesystem app?</p> <p>Thx</p>