조회 수 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 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 12008
84 System/OS [linux] 랜카드가 2개 일 때 네트워크 설정 hooni 2003.04.23 30139
83 System/OS [linux] 아파치설치/설정 - 알리어싱(aliasing) hooni 2003.04.23 51458
82 System/OS [linux] 아파치설치/설정 - 사용인증 hooni 2003.04.23 15152
81 System/OS [linux] 아파치설치/설정(모니터링) hooni 2003.04.23 14222
80 System/OS [linux] 아파치 설치/설정(proxy) hooni 2003.04.23 13012
79 System/OS [linux] 아파치설치/설정 - SSI(Server Side Include) hooni 2003.04.23 13262
78 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 14625
77 System/OS [linux] 아파치설치/설정 hooni 2003.04.23 14556
76 System/OS [linux] 새 하드디스크 추가하기..(내공쌓기) hooni 2003.04.23 13858
75 System/OS [linux] 기본적인 설정하기(내공쌓기) hooni 2003.04.23 14056
74 System/OS [linux] 계정관리하기(내공쌓기) hooni 2003.04.23 13320
73 System/OS [linux] 프로그램 설치방법 (내공쌓기) hooni 2003.04.23 13496
72 System/OS [linux] 간단한 vi편집기 사용 명령 hooni 2003.04.23 13537
71 System/OS [linux] 기본 명령어 (내공쌓기) hooni 2003.04.23 14381
70 System/OS [linux] 리눅스 활용 팁^^ hooni 2003.04.23 14692
Board Pagination Prev 1 ... 67 68 69 70 71 74 Next
/ 74