Contents

조회 수 983 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
805 Develop [android] ArrayAdapter 테스트 파일 ㅎㅎ hooni 2013.04.23 45296
804 Develop [android] ListView+ArrayAdapter 테스트 hooni 2013.04.23 43958
803 Develop [android] 화면 전환(가로/세로)시 설정 hooni 2013.04.23 43427
802 Develop [c++] BHO 프로그램 동작 원리.. 간단하게.. hooni 2013.04.23 43161
801 Develop [ios] 미스터피자(Mr.pizza) 어플 file hooni 2013.04.23 42697
800 Develop [java] 스트러츠(Struts) 세팅 ㅋㅋ file hooni 2013.04.23 42399
799 Develop [android] 개발 환경 세팅 따라하기 ㅋㅋ file hooni 2013.04.23 40463
798 Develop [js] jQuery 충돌 회피 hooni 2013.12.17 38377
797 Develop [ios] iOS 4.0 beta 에서 3.1.3으로 다운그레이드 하는 법 file hooni 2013.04.23 37543
796 Develop [js] jQuery 치트 시트 hooni 2013.12.18 36306
795 Develop [php] 몽이가 준 ajax 채팅 소스 ㅋㅋ file hooni 2013.04.23 36211
794 Develop [ios] iOS 6.0 이상 회전 하기 (이전 버전과 비교 변경 부분) file hooni 2014.01.27 34244
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 71 Next
/ 71