Contents

Develop
2015.02.10 18:01

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

조회 수 2191 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
711 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C) file hooni 2016.03.23 4259
710 Develop [c#]뉴 툴바 개인적으로 만든거.. (old) secret hooni 2013.04.23 4272
709 Develop 알고리즘 성능분석 file hooni 2014.06.24 4273
708 Develop [ios] CoreData 사용하기 (튜토리얼) hooni 2014.03.28 4319
707 Develop [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #1 (server) 1 hooni 2015.01.02 4322
706 Develop [swift] popToRoot 모달뷰, 네비게이션컨트롤러 한꺼번에 닫기 file hooni 2021.01.29 4381
705 Develop [ios] Swift 4 String, Date, DateFormatter 예제 hooni 2018.10.18 4398
704 Develop [js] Click button copy to clipboard hooni 2018.04.05 4403
703 Develop [iOS] Xcode 불필요한 캐시 삭제하기 hooni 2021.10.12 4405
702 Develop [ios] 유용한 매크로 hooni 2014.03.26 4433
701 Develop [ios] UIWebView 캐쉬 삭제 hooni 2014.04.08 4438
700 Develop [android] 딜레이를 구현하기 위한 꼼수 hooni 2016.11.24 4457
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 71 Next
/ 71