Contents

Develop
2015.02.10 18:01

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

조회 수 1143 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
117 Develop [c#] 간단한 소켓통신 예제.. hooni 2013.04.23 26735
116 Develop [python] DJI Tello 드론 코딩 (프로그래밍) 58 file hooni 2018.03.04 26865
115 System/OS [linux] 리눅스 파일시스템과 디렉토리 설명 hooni 2013.04.23 26937
114 Develop [node.js] 지금 하고 있는거.. file hooni 2013.04.23 27024
113 Develop [doc] 테크니컬 레포트 (BHO 취약점을 이용한 공격) 2 file hooni 2013.04.23 27135
112 Develop [ios] UDID와 UUID (디바이스의 Unique Identifier) file hooni 2013.04.23 27395
111 Develop [ios] 참고할만한 좋은 예제 소스.. hooni 2013.04.23 27407
110 Develop [android] 멀티터치(Multi touch) 부분 구현 ㅋㅋ file hooni 2013.04.23 27468
109 Develop 웹페이지 성능 테스트 툴 설명 hooni 2013.04.23 27521
108 System/OS [sql] insert into select 사용하기 hooni 2013.04.23 27639
107 Develop [c] fork() 시스템 콜 사용 방법. hooni 2003.04.23 27645
106 Develop [ios] 코코아 프레임워크(Cocoa Framework) 기본적인 내용~ hooni 2013.04.23 27724
Board Pagination Prev 1 ... 84 85 86 87 88 89 90 91 92 93 ... 98 Next
/ 98