Contents

?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
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
번호 분류 제목 글쓴이 날짜 조회 수
237 Algorithm [security] RSA 암호화 설명과 예.. hooni 2013.04.23 16690
236 System/OS [java] Tomcat/UTF-8 or All 지원 ㅎㅎ hooni 2013.04.23 16830
235 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 16982
234 Develop [ios] None IB vs. StoryBoard 샘플 소스 file hooni 2013.09.06 17011
233 PPT [ppt] 웜프레임워크 발표 양식(국보연) file hooni 2013.04.23 17052
232 System/OS [windows] 배치(bat)파일 제작 방법 hooni 2003.04.23 17063
231 Develop [android] 자동차 리모컨 소스코드 secret hooni 2013.04.23 17082
230 PPT [doc] 논문.. VoIP 관련.. ㅋㅋ file hooni 2013.04.23 17111
229 Develop [winmobile] 윈도우 모바일 간단한 테스트 코드 ㅋㅋ file hooni 2013.04.23 17117
228 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17177
227 Algorithm [security] 블럭 암호에 대해서.. hooni 2013.04.23 17186
226 Algorithm 암호 알고리즘 및 프로토콜의 이해.. file hooni 2013.04.23 17262
Board Pagination Prev 1 ... 74 75 76 77 78 79 80 81 82 83 ... 98 Next
/ 98