Top "Uiwebview" questions

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

UIWebView Load URL with parameters

I have an application that stores the user ID and code in NSUSERDEFAULTS I need to use these values in …

iphone objective-c url uiwebview nsuserdefaults
How to play youtube/vimeo video within the application in iPhone

I am building an application where I want to play video from url like Youtube, Vimeo, Direct url. I am …

ios objective-c youtube uiwebview vimeo
What's the difference between UIWebView and WKWebView when loading local resources

I want to load local resources with webView. I built a demo with both UIWebView and WKWebView to do some …

ios uiwebview wkwebview
Play YouTube videos in iPhone app without using UIWebView?

I want to play YouTube videos from my iPhone app. I have to tried play YouTube videos in my iPhone …

iphone ios uiwebview youtube mpmovieplayercontroller
How to get HTTP headers

How do you retrieve all HTTP headers from a NSURLRequest in Objective-C?

objective-c http uiwebview uiwebviewdelegate
UIWebView Link Click

In my app certain HTML page is loaded in a webview. I need to get click on certain label like "…

iphone uiwebview
How to detect and handle HTTP error codes in UIWebView?

I want to inform user when HTTP error 404 etc is received. How can I detect that? I've already tried to …

ios objective-c iphone uiwebview nserror
What does Unrestricted Web Access mean in iTunes Connect

When you are submitting your app to Apple app store, there is a section named "Rating" where you should rate …

ios uiwebview app-store-connect appstore-approval sfsafariviewcontroller
How to delete WKWebview cookies

For now I am doing like this NSHTTPCookie *cookie; NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (cookie in [storage cookies]) { [storage deleteCookie:…

ios xcode uiwebview wkwebview wkwebviewconfiguration
UIWebView stringByEvaluatingJavaScriptFromString

I'm stuck on getting some pretty basic JS to run in my UIWebView. In the web view's delegate, I have : …

javascript iphone uiwebview uiwebviewdelegate