Develop
2015.02.10 18:01

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

Views 1026 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. [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

  2. [ios] GPS 이용 상태 확인

  3. [js] jQuery, Javascript 모바일(스마트폰) 판단하는 방법

  4. [js] e.stopPropagation() VS e.preventDefault ()

  5. [js] 모바일 스크롤 방지(해제)

  6. [js] 스크롤 이벤트 막기

  7. [ios] 앱에서 설정화면 호출하기

  8. [ios] GMT Date와 Local Date 변환하기

  9. [ios] 아이폰 앱 이름 및 버전 정보

  10. [ios] 카메라 사용 권한 확인해서 분기하는 방법

  11. [ios] Touch ID 적용 샘플 코드 (예제)

  12. [펌] 게임 엔진 만든거 공개합니다.

  13. [ios] StoryBoard(xib) 없이 프로젝트 만들기

  14. [ios] UIWebView에서 로컬에 있는 html 파일 불러오기

  15. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

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

Board Pagination Prev 1 ... 7 8 9 10 11 ... 53 Next
/ 53