?

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
UIWebView의 딜리게이터 내용
- (void)webViewDidFinishLoad:(UIWebView*)webView {
    //현재 프로젝트의 리소스 파일의 경로 얻기.
    NSString *resourcePath = [[NSBundle mainBundle] resourcePath];

    // getImagePath와 같은 js파일 안의 메소드.
    NSString *tmpStr = [NSString stringWithFormat:@"getImagePath('%@')",
        resourcePath];

    // 문자열을 인코딩, 경로상에 공백과 같은 부분이 있을때 이를 해결.
    tmpStr = [tmpStr
        stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    // 실행.
    [webView stringByEvaluatingJavaScriptFromString:tmpStr];
}

JS 파일 내용
function getImagePath( _imgPath ) {
    //앞에서 넘겨 받은 경로뒤에 원하는 이미지명을 입력.
     addCSSRule('.highlight_color1',
        'background-image: url('+ _imgPath +'/bg_highlightpen_1.png);');
}


[출처] http://egloos.zum.com/sungsmy/v/2428366

?

List of Articles
No. Category Subject Author Date Views
373 System/OS [linux] ssh에서 원격 파일 전송하기.. hooni 2013.04.23 14157
372 Develop [linux] tar 명령어 뽀개기.. ㅋㅋ hooni 2003.04.23 7669
371 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 799
370 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11359
369 System/OS [linux] wget 명령 사용 예제 hooni 2020.05.26 1434
368 System/OS [linux] Xwindow/Xmanager 사용 hooni 2003.04.23 13334
367 System/OS [linux] X환경 GNOME에서 KDE로 바꾸는 법.. hooni 2013.04.23 12365
366 System/OS [linux] yum 업데이트 시 커널 제외하기 hooni 2014.09.11 1258
365 System/OS [linux] 간단한 find 명령어 설명(업데이트 해야 함) hooni 2013.04.23 9111
364 System/OS [linux] 간단한 NAT 설정 script hooni 2003.04.23 12597
363 System/OS [linux] 간단한 vi편집기 사용 명령 hooni 2003.04.23 13456
362 System/OS [linux] 계정관리하기(내공쌓기) hooni 2003.04.23 13157
361 System/OS [linux] 기본 명령어 (내공쌓기) hooni 2003.04.23 14333
360 System/OS [linux] 기본적인 설정하기(내공쌓기) hooni 2003.04.23 13993
359 System/OS [linux] 기존 환경설정 저장하면서 커널 컴파일.. hooni 2003.04.23 13458
358 System/OS [linux] 꿀통(honeyd) 설치하기.. 메뉴얼 과정 6 file hooni 2006.04.23 20219
Board Pagination Prev 1 ... 49 50 51 52 53 ... 74 Next
/ 74