Contents

조회 수 897 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
757 Develop [ios] 구분자로 문자열 자르기 (split) hooni 2013.04.23 26274
756 Develop [node.js] nodejs 기본 설치 hooni 2013.04.23 26257
755 Develop [python] DJI Tello 드론 코딩 (프로그래밍) 58 file hooni 2018.03.04 25789
754 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 25317
753 Develop [c#] 웹문서 소스(html) 긁어오기 file hooni 2013.04.23 24508
752 Develop [c++] MD5 구현 소스.. 퍼움.. file hooni 2013.04.23 24075
751 Develop [ios] 아이폰 개발 총정리.. file hooni 2013.04.23 23868
750 Develop [pdf] GPS의 동작 원리 ㅎㅎ file hooni 2013.04.23 23839
749 Develop [c] 다중연결 서버 만들기 #4 - thread 사용 file hooni 2013.04.23 23704
748 Develop [c#] 비동기 통신 샘플 코드 ㅎㅎ file hooni 2013.04.23 23639
747 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 23249
746 Develop [ios] UIColor 지정에서 RGB define ㅎㅎ hooni 2013.04.23 22917
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 71 Next
/ 71