Contents

Develop
2015.02.10 18:01

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

Views 2181 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
241 Develop [php] Connect to Firebase Console in Laravel file hooni 2018.05.09 5727
240 Develop [php] gd 프로그램.. htm 파일.. ㅋㅋ file hooni 2013.04.23 8364
239 Develop [php] GregorianToJD(), JDToGregorian() 함수 내용 hooni 2013.12.25 11551
238 Develop [php] Laravel 4. twitter bootstrap 적용하기 hooni 2018.04.05 4660
237 Develop [php] Laravel 5.4: Specified key was too long error file hooni 2017.12.04 42515
236 Develop [php] Laravel Route에서 PC/Mobile 분기 hooni 2018.01.24 4670
235 Develop [PHP] MacOS에서 PHP 7 설치하기 file hooni 2018.05.11 7388
234 Develop [php] mysql_ 과 mysqli_ 의 차이 hooni 2017.12.01 3914
233 Develop [php] php+db 연동(odbc, mssql, mysql, sybase) 3 hooni 2013.04.23 9692
232 Develop [php] php5.3부터는 eregi()대신 preg_match()를 사용 hooni 2013.11.18 14153
231 Develop [php] substr() 한글 자를 때 깨짐 방지 hooni 2014.01.09 21530
230 Develop [php] URL/URI 관련 환경변수 hooni 2003.04.23 10422
Board Pagination Prev 1 ... 74 75 76 77 78 79 80 81 82 83 ... 99 Next
/ 99