조회 수 981 추천 수 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
번호 분류 제목 글쓴이 날짜 조회 수
85 Develop [android] 레이아웃 사이즈 변경 (동적; programmatically) hooni 2016.11.07 1623
84 Develop [android] 딜레이를 구현하기 위한 꼼수 hooni 2016.11.24 1085
83 Develop [android] 디바이스(시뮬레이터) hosts 파일 수정하기 hooni 2013.04.23 31132
82 Develop [android] 단일 Thread 환경의 안드로이드에서 Handler를 사용 file hooni 2013.04.23 26578
81 Develop [android] 개발 환경 세팅 따라하기 ㅋㅋ file hooni 2013.04.23 40463
80 Develop [android] 간단한 SQLIite 예제 hooni 2017.06.14 1477
79 Develop [android] 가속도 센서를 이용한 흔듦(Shake) 감지 file hooni 2014.11.04 2012
78 Develop [android] [번역] 안드로이드 Android Cloud to Device Messaging(C2DM) hooni 2013.04.23 20484
77 PPT [android] XML파서(XMLParser)의 종류와 성능 비교에 대한 발표 자료 file hooni 2013.04.23 75721
76 Develop [android] SurfaceView를 이용한 애니메이션 ㅎㅎ file hooni 2013.04.23 57778
75 Develop [android] SQLiteOpenHelper를 이용한 DBManager hooni 2017.06.14 2195
74 Develop [android] N-Puzzle 게임 file hooni 2015.07.09 964
73 Develop [android] ListView+ArrayAdapter 테스트 hooni 2013.04.23 43958
72 Develop [android] keytool을 사용하여 키스토어 생성 hooni 2013.04.23 69577
71 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 1416
70 Develop [android] GCM 사용하기 1 (GCM 서비스 신청하기) file hooni 2013.07.06 51427
Board Pagination Prev 1 ... 67 68 69 70 71 74 Next
/ 74