Contents

조회 수 971 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
145 Develop [c] 네트워크 정보 알아보기 file hooni 2013.04.23 16150
144 Develop [android] 안드로이드 어플 모음 ㅎㅎ secret hooni 2013.04.23 16340
143 Develop [c++] p.58 연습문제 2번 hooni 2003.04.23 16349
142 Develop 프로그램 문서 관리 (Doxygen) hooni 2013.04.23 16434
141 Develop [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 hooni 2013.04.23 16466
140 Develop 프로그래밍 소스 관련 사이트.. hooni 2013.04.23 16523
139 Develop [ios] 푸시알림(APNS)에 대한 php 라이브러리 ㅋㅋ hooni 2013.04.23 16660
138 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16975
137 Develop [ios] None IB vs. StoryBoard 샘플 소스 file hooni 2013.09.06 17008
136 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
135 Develop [winmobile] 윈도우 모바일 간단한 테스트 코드 ㅋㅋ file hooni 2013.04.23 17115
134 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17174
Board Pagination Prev 1 ... 54 55 56 57 58 59 60 61 62 63 ... 71 Next
/ 71