Develop
2015.02.10 18:01

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

Views 1035 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

?

List of Articles
No. Category Subject Author Date Views
745 Develop [js] 자바스크립트(Javascript) 코드를 동적으로 삽입하는 방법.. file hooni 2013.04.23 22879
744 Develop [ios] UILabel top alignㅎㅎ hooni 2013.04.23 22842
743 Develop 밸런싱 로봇.. 최종.. (관련 논문도 첨부) ㅋㅋ file hooni 2013.04.23 22822
742 Develop [vb] 문자열에서 태그 제거함수 (Visual Basic) file hooni 2013.04.23 22626
741 Develop [iphone] 화면 전환 Portrait & Landscape Mode hooni 2013.04.23 22311
740 Develop [doc] Json Framework 설치와 사용 file hooni 2013.04.23 21923
739 Develop [c] 재미있는 코딩.. file hooni 2003.04.23 21316
738 Develop 프로그래밍에서 foo, bar 함수의 유래 file hooni 2013.06.25 21264
737 Develop [c] 포인터 학습용 예제 소스 코드 file hooni 2013.04.23 21034
736 Develop [c] 이진트리/트리 순회법 코드(전위/중위/후위) 5 file hooni 2015.07.02 20926
735 Develop [c++] 디렉토리 내의 파일 찾기 FindFirstFile() 함수 6 hooni 2013.04.23 20587
734 Develop git 브런치 배우기 (링크) hooni 2013.07.09 20571
733 Develop [opengl] 컴퓨터 그래픽스 강의 자료(수업자료) file hooni 2003.04.23 20432
732 Develop [android] [번역] 안드로이드 Android Cloud to Device Messaging(C2DM) hooni 2013.04.23 20425
731 Develop [php] substr() 한글 자를 때 깨짐 방지 hooni 2014.01.09 20367
730 Develop [ios] UIView에서 상위 UIViewController 가져오기 hooni 2013.09.27 20161
Board Pagination Prev 1 5 6 7 8 9 ... 53 Next
/ 53