Views 889 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
로컬에 있는 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
No. Category Subject Author Date Views
665 Develop [ios] @property의 속성 (strong, weak, copy) 사용 경우 hooni 2014.08.08 1654
664 Develop [ios] TextField 특정 문자만 사용하도록 하기 hooni 2014.06.30 2675
663 Develop [ios] XCode에서 Provisioning Profile 여러개 중복될 때 hooni 2014.06.26 2814
662 Develop 알고리즘 성능 분석 기준 hooni 2014.06.24 2783
661 Develop 알고리즘 성능분석 file hooni 2014.06.24 2963
660 Develop [ios] iOS에서 디바이스 종류 알아오기 hooni 2014.05.24 3645
659 Develop [ios] 아이폰 GPS 사용하기 hooni 2014.05.24 3945
658 Develop [ios] 언어, 지역, 국가 설정 가져오기 hooni 2014.05.12 269665
657 Develop [ios] URL 파라미터 파싱~ hooni 2014.05.12 3670
656 Develop [ios] 앱 딜리게이트 얻어오기. (AppDelegate) hooni 2014.05.10 3341
655 Develop [ios] 앱딜리게이트 라이프사이클 (AppDelegate Lifecycle) file hooni 2014.05.09 4451
654 Develop [ios] 애플 앱스토어 IDFA 리뷰 정책 변경 안내 file hooni 2014.05.07 4179
653 Develop [ios] NSString URL Encode/Decode (인코딩/디코딩) hooni 2014.05.02 3414
652 Develop [ios] 커스텀 폰트 사용하기 (Custom Fonts) file hooni 2014.04.30 3133
651 Develop [ios] iOS 의 인앱구매 소개 file hooni 2014.04.29 3825
650 Develop [js] Array.splice() 설명 hooni 2014.04.24 3001
Board Pagination Prev 1 ... 10 11 12 13 14 ... 53 Next
/ 53