Contents

?

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


?

  1. [c][php] 프로세스정보와 메모리 정보 웹으로 출력하는거..

    Date2013.04.23 CategoryDevelop Byhooni Views6347
    Read More
  2. [java] 에디터.. swing 사용

    Date2013.04.23 CategoryDevelop Byhooni Views6336
    Read More
  3. [js] 서서히 나타나는 화면.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views6233
    Read More
  4. [doc] C++언어 문법 설명서

    Date2013.04.23 CategoryDevelop Byhooni Views6197
    Read More
  5. [js] 자바스크립트 escape()를 PHP로 받기

    Date2013.04.23 CategoryDevelop Byhooni Views6003
    Read More
  6. [c] 윈도우 API Viewport와 Window

    Date2013.04.23 CategoryDevelop Byhooni Views5984
    Read More
  7. SVN(Subversion) 설치와 설정 (sasl 인증 적용 포함)

    Date2014.09.11 CategorySystem/OS Byhooni Views5855
    Read More
  8. [windows] 윈도우즈 콘솔에서 정품인증 하는 방법

    Date2017.05.24 CategorySystem/OS Byhooni Views5688
    Read More
  9. [mysql] MySQL 한글 깨짐 현상 해결하기(UTF8)

    Date2017.12.01 CategoryDatabase Byhooni Views5652
    Read More
  10. [mac] 맥(OSX)에서 NTFS, 윈도우에서 HFS+ 사용하기

    Date2014.03.12 CategorySystem/OS Byhooni Views5196
    Read More
  11. [PHP] MacOS에서 PHP 7 설치하기

    Date2018.05.11 CategoryDevelop Byhooni Views5056
    Read More
  12. [linux] awk 명령어

    Date2014.03.11 CategorySystem/OS Byhooni Views5051
    Read More
Board Pagination Prev 1 ... 67 68 69 70 71 72 73 74 75 76 ... 98 Next
/ 98