Contents

조회 수 881 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
709 Develop [c++] 문자열 뒤집기(문자열 거꾸로 출력) hooni 2013.04.23 17275
708 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17132
707 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
706 Develop [winmobile] 윈도우 모바일 간단한 테스트 코드 ㅋㅋ file hooni 2013.04.23 17081
705 Develop [ios] None IB vs. StoryBoard 샘플 소스 file hooni 2013.09.06 16916
704 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16840
703 Develop [ios] 푸시알림(APNS)에 대한 php 라이브러리 ㅋㅋ hooni 2013.04.23 16630
702 Develop 프로그래밍 소스 관련 사이트.. hooni 2013.04.23 16483
701 Develop [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드 hooni 2013.04.23 16439
700 Develop 프로그램 문서 관리 (Doxygen) hooni 2013.04.23 16383
699 Develop [android] 안드로이드 어플 모음 ㅎㅎ secret hooni 2013.04.23 16340
698 Develop [c++] p.58 연습문제 2번 hooni 2003.04.23 16296
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 71 Next
/ 71