Contents

Develop
2015.02.10 18:01

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

조회 수 1146 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
237 Algorithm [security] RSA 암호화 설명과 예.. hooni 2013.04.23 16698
236 System/OS [java] Tomcat/UTF-8 or All 지원 ㅎㅎ hooni 2013.04.23 16833
235 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16989
234 Develop [ios] None IB vs. StoryBoard 샘플 소스 file hooni 2013.09.06 17022
233 PPT [ppt] 웜프레임워크 발표 양식(국보연) file hooni 2013.04.23 17057
232 System/OS [windows] 배치(bat)파일 제작 방법 hooni 2003.04.23 17069
231 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
230 PPT [doc] 논문.. VoIP 관련.. ㅋㅋ file hooni 2013.04.23 17119
229 Develop [winmobile] 윈도우 모바일 간단한 테스트 코드 ㅋㅋ file hooni 2013.04.23 17121
228 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17181
227 Algorithm [security] 블럭 암호에 대해서.. hooni 2013.04.23 17201
226 Algorithm 암호 알고리즘 및 프로토콜의 이해.. file hooni 2013.04.23 17280
Board Pagination Prev 1 ... 74 75 76 77 78 79 80 81 82 83 ... 98 Next
/ 98