Contents

Develop
2015.02.10 18:01

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

조회 수 1035 댓글 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


?

  1. [c] 한글 문자열 출력

  2. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

  3. [ios] ViewController Push할 때 애니메이션 효과

  4. [linux] CentOS Apache 웹서버에 HTTPS 적용

  5. [eng] 숙제 ㅋㅋㅋ

  6. [c] 기막힌 정렬 코드 ㅋㄷ

  7. [ios] 상위 ViewController 가져오기

  8. [ios] 최상위 ViewController 가져오기

  9. DDay Memo 1.9.4 소스코드

  10. [ios] How to set up clang formatter

  11. [ios] SBCampanion App 초안

  12. [mysql] CPU 점유율이 높을 때 확인할 내용

Board Pagination Prev 1 ... 10 11 12 13 14 15 16 17 18 19 ... 98 Next
/ 98