Contents

Develop
2015.02.10 18:01

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

조회 수 1140 댓글 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 Develop [php] Laravel 5.4: Specified key was too long error file hooni 2017.12.04 9369
236 Develop [php] Laravel Route에서 PC/Mobile 분기 hooni 2018.01.24 2662
235 Develop [PHP] Mac OS에서 PHP 7 설치하기 file hooni 2018.05.11 5035
234 Develop [php] mysql_ 과 mysqli_ 의 차이 hooni 2017.12.01 1841
233 Develop [php] php+db 연동(odbc, mssql, mysql, sybase) 3 hooni 2013.04.23 8569
232 Develop [php] php5.3부터는 eregi()대신 preg_match()를 사용 hooni 2013.11.18 12526
231 Develop [php] substr() 한글 자를 때 깨짐 방지 hooni 2014.01.09 20438
230 Develop [php] URL/URI 관련 환경변수 hooni 2003.04.23 9218
229 Develop [php] whois정보 조회 프로그램 hooni 2003.04.23 11773
228 Develop [php] XE 관리자 IP대역 설정 오류 해결법 hooni 2014.02.10 10819
227 Develop [php] XE 스킨에서 특정 도메인 리다이렉션 file hooni 2015.01.28 674
226 Develop [php] XE 에서 php 구문 사용하기 (XE 템플릿에서) hooni 2013.10.31 19533
Board Pagination Prev 1 ... 74 75 76 77 78 79 80 81 82 83 ... 98 Next
/ 98