조회 수 889 추천 수 0 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
357 Etc 선과 악에 대한 영어논술문항(지킬앤하이드 독서 후 이어지는 심화 수행평가) hooni 2013.12.04 12746
356 Develop [js] Closure를 이용해 캡슐화.. hooni 2013.12.16 9594
355 Develop [js] jQuery 코드 작성시 편리한 HTML 템플릿 hooni 2013.12.17 33071
354 Develop [js] jQuery 셀랙터(selector) 요약 hooni 2013.12.17 9418
353 Develop [js] jQuery 배열 루프(each) hooni 2013.12.17 9987
352 Develop [js] 객체 머지.. hooni 2013.12.17 8963
351 Develop [js] jQuery 충돌 회피 hooni 2013.12.17 38313
350 Develop [js] jQjuery $ 활용 hooni 2013.12.17 8874
349 Develop [js] 순환참조에 의한 메모리 누수 관련 file hooni 2013.12.17 10844
348 Develop [js] jQuery 치트 시트 hooni 2013.12.18 36253
347 Develop [js] 이벤트 전파 3단계 hooni 2013.12.18 9962
346 System/OS CentOS 6.5 USB 설치 6 file hooni 2013.12.18 37676
345 Database [oracle] SQL문 실행 방법 3가지 file hooni 2013.12.19 12123
344 Develop [css] z-index에 설정할 수 있는 최대값? hooni 2013.12.20 14705
343 Develop [js] jQuery plugin 요약 hooni 2013.12.20 10700
342 System/OS [linux] CentOS 터미널 언어 설정(한글/영어) hooni 2013.12.22 18513
Board Pagination Prev 1 ... 50 51 52 53 54 ... 74 Next
/ 74