Contents

조회 수 981 댓글 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 12800
356 Develop [js] Closure를 이용해 캡슐화.. hooni 2013.12.16 9622
355 Develop [js] jQuery 코드 작성시 편리한 HTML 템플릿 hooni 2013.12.17 33119
354 Develop [js] jQuery 셀랙터(selector) 요약 hooni 2013.12.17 9440
353 Develop [js] jQuery 배열 루프(each) hooni 2013.12.17 10025
352 Develop [js] 객체 머지.. hooni 2013.12.17 8997
351 Develop [js] jQuery 충돌 회피 hooni 2013.12.17 38377
350 Develop [js] jQjuery $ 활용 hooni 2013.12.17 8907
349 Develop [js] 순환참조에 의한 메모리 누수 관련 file hooni 2013.12.17 10865
348 Develop [js] jQuery 치트 시트 hooni 2013.12.18 36304
347 Develop [js] 이벤트 전파 3단계 hooni 2013.12.18 9996
346 System/OS CentOS 6.5 USB 설치 6 file hooni 2013.12.18 37810
Board Pagination Prev 1 ... 64 65 66 67 68 69 70 71 72 73 ... 98 Next
/ 98