Contents

Develop
2015.02.10 18:01

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

조회 수 1131 댓글 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. [ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법

  2. [ios] Xcode의 디버그 모드에서 콜스택

  3. [ios] 간단한 방법으로 OS버전 확인하기.

  4. [ios] 개발 기초 가이드 링크..

  5. [ios] 구분자로 문자열 자르기 (split)

  6. [ios] 기본 네비게이션바의 타이틀, back버튼 위치와 속성 변경

  7. [ios] 네트워크 인디케이터(NetworkActivityIndicator) 작동

  8. [ios] 동영상 플레이어 샘플 (for Local File)

  9. [ios] 동영상 플레이어 샘플 (for PIP Player)

  10. [ios] 동영상 플레이어 샘플 (for Remote Url)

  11. [ios] 디렉토리 하하하..

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

Board Pagination Prev 1 ... 38 39 40 41 42 43 44 45 46 47 ... 71 Next
/ 71