Contents

Develop
2015.02.10 18:01

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

Views 1035 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. [io] Apple Watch, Today Extension 앱ID 설정

    Date2016.04.20 CategoryDevelop Byhooni Views805
    Read More
  2. [ios] Did UIScrollView End Scrolling?

    Date2016.04.19 CategoryDevelop Byhooni Views1032
    Read More
  3. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)

    Date2016.03.23 CategoryDevelop Byhooni Views7371
    Read More
  4. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C)

    Date2016.03.23 CategoryDevelop Byhooni Views1627
    Read More
  5. [js] AngularJS 란?

    Date2015.11.26 CategoryDevelop Byhooni Views899
    Read More
  6. [php] 한글 문자열 자르기 (utf-8)

    Date2015.11.10 CategoryDevelop Byhooni Views1328
    Read More
  7. [c] 한글 문자열 출력

    Date2015.11.10 CategoryDevelop Byhooni Views1685
    Read More
  8. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

    Date2015.10.23 CategoryDevelop Byhooni Views1191
    Read More
  9. [ios] ViewController Push할 때 애니메이션 효과

    Date2015.10.23 CategoryDevelop Byhooni Views882
    Read More
  10. [linux] CentOS Apache 웹서버에 HTTPS 적용

    Date2015.10.23 CategoryDevelop Byhooni Views794
    Read More
  11. [c] 기막힌 정렬 코드 ㅋㄷ

    Date2015.10.13 CategoryDevelop Byhooni Views817
    Read More
  12. [ios] 상위 ViewController 가져오기

    Date2015.10.12 CategoryDevelop Byhooni Views963
    Read More
Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 ... 71 Next
/ 71