最終更新:2017-08-26 (土) 19:56:08 (2431d)  

UIWebView
Top / UIWebView

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html

メモ

  • JITが効かない

WKWebView

NSURL* url = [NSURL URLWithString:@"http://onakasuita.org"];
NSURLRequest *req = [NSURLRequest requestWithURL:url];
[_webView loadRequest:req];

Tasks

Setting the Delegate

Loading Content

Moving Back and Forward

  • canGoBack? - プロパティ (BOOL)
  • canGoForward? - プロパティ (BOOL)
  • goBack?
  • goForward?

Setting Web Content Properties

  • scalesPageToFit? - プロパティ (BOOL)
  • scrollView? - プロパティ (UIScrollView)
  • suppressesIncrementalRendering? - プロパティ (BOOL)
  • keyboardDisplayRequiresUserAction? - プロパティ (BOOL)
  • detectsPhoneNumbers? - プロパティ (BOOL) Deprecated in iOS 3.0?

Running JavaScript

  • stringByEvaluatingJavaScriptFromString?

Detecting Types of Data

  • dataDetectorTypes? - プロパティ (UIDataDetectorTypes?)

Managing Media Playback

関連