Contents

Develop
2015.02.10 18:01

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

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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
601 Develop [ios] 아이폰에서 진동(Vibrate) 기능 추가하기 hooni 2014.04.18 4472
600 Develop [ios] 아이폰 앱 이름 및 버전 정보 hooni 2015.03.24 2195
599 Develop [ios] 아이폰 개발 총정리.. file hooni 2013.04.23 25119
598 Etc [ios] 아이폰 개발 따라하기 ㅋㅋㅋ hooni 2013.04.23 24725
597 Develop [ios] 아이폰 GPS 사용하기 hooni 2014.05.24 5030
596 Develop [iOS] 시뮬레이터에 푸시 알림을 보내는 방법 file hooni 2021.10.13 4776
595 Develop [ios] 스터디 자료 (from 종길M) secret hooni 2013.06.04 0
594 Develop [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기 hooni 2014.11.19 2598
593 Develop [ios] 소소한 팁 (Rect,Point,Path,URL 등) hooni 2013.08.08 32640
592 Develop [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인 hooni 2015.04.28 3584
591 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 1897
590 Develop [ios] 상위 ViewController 가져오기 hooni 2015.10.12 2843
Board Pagination Prev 1 ... 44 45 46 47 48 49 50 51 52 53 ... 99 Next
/ 99