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 [c] C로 구현한 CGI - 계산기 (링크리스트, 스택, 이진트리) file hooni 2003.04.23 28083
664 Develop [c] C로 구현한 CGI - 달력과 날짜계산기 file hooni 2003.04.23 32293
663 Develop [c] C로 구현한 CGI - 방명록 file hooni 2003.04.23 33433
662 Develop [C] C언어의 조건 연산자(Conditional Operator) hooni 2003.04.23 14227
661 Develop [c] C에서 MySQL DB 사용하기~ file hooni 2003.04.23 7011
660 Develop [c] fgets() 함수 사용하기.. hooni 2003.04.23 7818
659 Develop [c] flooding 알고리즘 미로 찾기(도스용) 소스코드 9 file hooni 2003.04.23 12492
658 Develop [c] fork() 시스템 콜 사용 방법. hooni 2003.04.23 27581
657 Develop [c] FSN 온라인 코딩 테스트 (Sorting, Binary Search) file hooni 2015.06.26 1011
656 Develop [c] GD라이브러리 설치 테스트 소스 file hooni 2013.04.23 8143
655 Develop [c] GD라이브러리(jpeg)를 사용한 웹 카운터 샘플 hooni 2013.04.23 15107
654 Develop [c] home env stack overflow hooni 2003.04.23 11515
653 Develop [c] i2osp 임시로.. ㅋㅋ file hooni 2003.04.23 7819
652 Develop [c] ICMP 패킷을 이용한 장난감 hooni 2003.04.23 17414
651 Develop [c] IP 스푸핑(ip spoof) 소스 - 정리해야 함 file hooni 2003.04.23 7545
650 Develop [c] kmp 활용 search file hooni 2013.04.23 7414
Board Pagination Prev 1 ... 10 11 12 13 14 ... 53 Next
/ 53