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. [mac] OS X 요세미티 사용자가 많이 겪는 버그와 몇몇 불편사항

    Date2015.01.04 CategorySystem/OS Byhooni Views1520
    Read More
  2. [mac][추천 무료앱] 구름 입력기 - 국내 맥 사용자를 위한 한글 대안 입력기

    Date2015.01.04 CategorySystem/OS Byhooni Views2150
    Read More
  3. 개인적으로 쓰고 있는 bash_profile

    Date2015.01.16 CategorySystem/OS Byhooni Views842
    Read More
  4. [maven] Mac OS에 메이븐(maven) 설치하기

    Date2015.01.21 CategoryDevelop Byhooni Views1104
    Read More
  5. [php] XE에서 도메인 별로 광고 다르게 적용하기

    Date2015.01.28 CategoryDevelop Byhooni Views612
    Read More
  6. [php] XE 스킨에서 특정 도메인 리다이렉션

    Date2015.01.28 CategoryDevelop Byhooni Views573
    Read More
  7. [js] 2048 예쁘게 만들고 있는거.. ㅋㄷ

    Date2015.01.30 CategoryDevelop Byhooni Views0
    Read More
  8. [ios] URL 랜딩 속도(OpenURL 10초 정지되는) 이슈

    Date2015.02.09 CategoryDevelop Byhooni Views847
    Read More
  9. [ios] 문자열로 함수 실행하기 (eval 함수처럼)

    Date2015.02.10 CategoryDevelop Byhooni Views849
    Read More
  10. [ios] 앱의 로컬 js 파일에서 해당 프로젝트의 이미지 불러오기

    Date2015.02.10 CategoryDevelop Byhooni Views623
    Read More
  11. [ios] 로컬에 있는 html 실행하기

    Date2015.02.10 CategoryDevelop Byhooni Views1026
    Read More
  12. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

    Date2015.02.10 CategoryDevelop Byhooni Views947
    Read More
Board Pagination Prev 1 ... 74 75 76 77 78 79 80 81 82 83 ... 98 Next
/ 98