Contents

Develop
2015.02.10 18:01

[ios] 로컬에 있는 html 실행하기

조회 수 2191 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

HTML 파일을 리소스로 두고 웹뷰에서 읽어서 로드하기.

// Load the html as a string from the file system
NSString *path = [[NSBundle mainBundle]
    pathForResource:@"index" ofType:@"html"];

NSString *html = [[NSString alloc] initWithContentsOfFile:path
    encoding:NSUTF8StringEncoding error:nil];

// Tell the web view to load it
[WebView loadHTMLString:html
    baseURL:[[NSBundle mainBundle] bundleURL]];


[출처] http://stackoverflow.com/questions/4645414/how-can-i-load-a-local-html-file-into-the-uiwebview


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
241 Develop [c] OpenGL 색 입방체의 회전(입체) hooni 2003.04.23 8979
240 Develop [c] OpenGL 마우스 이벤트 hooni 2003.04.23 10025
239 Develop [c] OpenGL 관측점 이동 hooni 2003.04.23 9387
238 Develop [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치 hooni 2016.10.03 5064
237 Develop [c] KNN(K-nearest neighbor) 패턴인식 과제.. file hooni 2013.04.23 8562
236 Develop [c] kmp 활용 search file hooni 2013.04.23 8388
235 Develop [c] IP 스푸핑(ip spoof) 소스 - 정리해야 함 file hooni 2003.04.23 8913
234 Develop [c] ICMP 패킷을 이용한 장난감 hooni 2003.04.23 18127
233 Develop [c] i2osp 임시로.. ㅋㅋ file hooni 2003.04.23 9125
232 Develop [c] home env stack overflow hooni 2003.04.23 22151
231 Develop [c] GD라이브러리(jpeg)를 사용한 웹 카운터 샘플 hooni 2013.04.23 16375
230 Develop [c] GD라이브러리 설치 테스트 소스 file hooni 2013.04.23 9238
Board Pagination Prev 1 ... 74 75 76 77 78 79 80 81 82 83 ... 99 Next
/ 99