Contents

조회 수 2011 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
1105 Etc WM미통기 - 10. 조건부확률 hooni 2015.04.20 2261
1104 Develop [ios] VIN Scanner (VIN barcode) 스캐너 file hooni 2017.09.16 2273
1103 Develop [git] 쉬운 버전관리 Git 설명 hooni 2015.08.18 2275
1102 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 2285
1101 Etc 수리통계학 : 표본공간과 사상-1 hooni 2015.04.20 2295
1100 Develop [ios] UIWebView를 이용한 로컬 HTML 파일 표시 file hooni 2015.01.02 2313
1099 System/OS [linux] yum 업데이트 시 커널 제외하기 hooni 2014.09.11 2325
1098 Develop [ios] iOS 앱 아이콘을 만드는 유틸 file hooni 2015.01.03 2328
1097 Develop [ios] UIView 계층구조 hooni 2015.01.03 2331
1096 Develop 리팩토링 계획안 file hooni 2017.05.15 2357
1095 Develop [ios] Crashlytics, Fabfic 설치/설정 hooni 2016.07.21 2367
1094 Develop [ios] 오브젝티브C→스위프트, 코드 변환 손쉽게 file hooni 2015.08.07 2382
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 99 Next
/ 99