Contents

조회 수 973 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
로컬에 있는 html 파일을 불러오는 방법!!
일단 웹뷰에서 보고자하는 html 파일을 프로젝트에 추가.
아래와 같은 코드로 로컬에 있는 html 파일을 읽어와서 웹뷰에 내용을 출력할 수 있다.
UIWebView *webView = [[UIWebView alloc]
    initWithFrame:CGRectMake(x, y, width, height)];

NSString *htmlFile = [[NSBundle mainBundle]
    pathForResource:@"파일명" ofType:@"html"];

NSData *htmlData = [NSData dataWithContentsOfFile:htmlFile];

[webView loadData:htmlData MIMEType:@"text/html"
    textEncodingName:@"UTF-8" baseURL:[NSURLURLWithString:@""]];

[self.view addSubview:webView];

-----------
팁!
webView에 라운드 주는 방법!
QuartzCore 프레임워크를 임포트하고 라운드 속성을 넣어준다.
#import <QuartzCore/QuartzCore.h>

[[webView layer] setCornerRadius:10];
[webView setClipsToBounds:YES];

[[webView layer]setBorderColor:
[[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor]];
[[webView layer] setBorderWidth:2.75];

[출처] http://bananamilk.tistory.com/197

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1089 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 11999
1088 System/OS [linux] 이기종간의 파일 공유(Samba) hooni 2003.04.23 14951
1087 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14636
1086 System/OS [linux] DNS(Domain Name System) 설치, 설정 hooni 2003.04.23 12515
1085 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 48016
1084 System/OS [linux] DHCP(Dynamic Host Configuration Protocol) 서버 hooni 2003.04.23 13095
1083 System/OS [linux] 네트웍 트래픽 모니터링(MRTG) hooni 2003.04.23 42347
1082 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 17912
1081 System/OS [linux] 네트워크 커널 설정.. hooni 2003.04.23 16547
1080 System/OS [linux] 최소한의 커널 설정(커널설치 전체과정) hooni 2003.04.23 17481
1079 System/OS [linux] Xwindow/Xmanager 사용 hooni 2003.04.23 13396
1078 System/OS [linux] ipchains 옵션 hooni 2003.04.23 13696
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 98 Next
/ 98