Develop
2015.02.10 18:01

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

Views 1030 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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. [vim] vim 명령으로  문자 제거하기 (remove 65279 bomb)

    Date2021.02.03 CategoryDevelop Byhooni Views1161
    Read More
  2. [js] Click button copy to clipboard

    Date2018.04.05 CategoryDevelop Byhooni Views1171
    Read More
  3. [ios] Facebook Cache 갱신하는 함수

    Date2017.02.27 CategoryDevelop Byhooni Views1181
    Read More
  4. [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙)

    Date2017.05.11 CategoryDevelop Byhooni Views1181
    Read More
  5. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

    Date2015.10.23 CategoryDevelop Byhooni Views1183
    Read More
  6. 사이버보안실무 발표자료 (2017.06.08)

    Date2017.06.05 CategoryDevelop Byhooni Views1205
    Read More
  7. [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치

    Date2016.10.03 CategoryDevelop Byhooni Views1208
    Read More
  8. [ios] UIWebView를 이용한 로컬 HTML 파일 표시

    Date2015.01.02 CategoryDevelop Byhooni Views1236
    Read More
  9. [ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기

    Date2018.10.19 CategoryDevelop Byhooni Views1252
    Read More
  10. [ios] 동영상 플레이어 샘플 (for PIP Player)

    Date2017.03.15 CategoryDevelop Byhooni Views1261
    Read More
  11. [android] How can I place app icon on launcher home screen?

    Date2016.11.15 CategoryDevelop Byhooni Views1263
    Read More
  12. [ios] GPS 이용 상태 확인

    Date2015.04.27 CategoryDevelop Byhooni Views1293
    Read More
  13. [js] URL 파싱하기 (jQuery 안쓰고)

    Date2017.12.14 CategoryDevelop Byhooni Views1308
    Read More
  14. [php] 한글 문자열 자르기 (utf-8)

    Date2015.11.10 CategoryDevelop Byhooni Views1319
    Read More
  15. [android] 간단한 SQLIite 예제

    Date2017.06.14 CategoryDevelop Byhooni Views1325
    Read More
  16. How to Test SMTP AUTH using Telnet

    Date2018.04.05 CategoryDevelop Byhooni Views1335
    Read More
Board Pagination Prev 1 5 6 7 8 9 ... 53 Next
/ 53