티스토리 뷰
WebView를 사용하여서 화면에 페이지를 보여주는 방법이다.
* URL을 이용하는 방법
NSURL* url = [NSURL URLWithString:@"http://www.apple.com"];
NSURLRequest* urlRequest = [NSURLRequest requestWithURL:url];
webView.delegate = self;
[webView loadRequest:urlRequest];
* String을 이용하는 방법
NSString* webString = @"<html><body><h1>Hello world!</h1></body></html>";
webView.delegate = self;
[webView loadHTMLString:webString baseURL:[NSURL URLWithString:@"file:///."]];
* delegate 사용
<UIWebViewDelegate> 선언
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
NSString* requestUrl = [[request URL] absoluteString];
NSLog(@"webView: shouldStartLoadWithRequest:%@ navigationType:%ld", requestUrl, (long)navigationType);
return YES;
}
- (void)webViewDidStartLoad:(UIWebView *)webView {
NSLog(@"webViewDidStartLoad : %@", [[webView.request URL] absoluteString]);
}
- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSLog(@"webViewDidFinishLoad : %@", [[webView.request URL] absoluteString]);
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
}
'Mobile > iOS' 카테고리의 다른 글
[iOS]UIView Animation (0) | 2016.03.09 |
---|---|
[iOS]UITableView cell 갱신 (0) | 2016.03.09 |
[iOS][NSUserDefaults standardUserDefaults] 사용하기 (0) | 2016.03.07 |
[iOS]위치정보 사용 가능 확인 (0) | 2016.03.03 |
[iOS]8이상에서 위치정보 사용하기 (0) | 2016.03.03 |
- Total
- Today
- Yesterday
- rxswift
- Windows
- tomcat
- enum
- cocoapods
- Xcode
- Spring
- SWIFT
- go
- Java
- nodejs
- Codable
- php
- git
- intellij
- windows10
- ubuntu
- war
- Python
- Gradle
- Kotlin
- MySQL
- Linux
- CentOS
- github
- docker
- android
- ios
- golang
- centos8
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |