?

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
825 Develop [ios] Start developing your navigation app for CarPlay without enrollment file hooni 2020.02.22 124717
824 Develop [php] 3 Ways to Detect Mobile or Desktop in PHP file hooni 2020.01.28 3720
823 Develop 자주 쓰는 Docker 명령어 alias hooni 2020.01.10 269299
822 Develop [python][django] request.cookie 읽어오기 ㅋㅋㅋ (쓰기) hooni 2019.12.06 1686
821 Develop [python] 파라미터 앞에 *, ** 의 의미? (*args, **kwargs) hooni 2019.11.22 1549
820 Develop 링크들 보고 지울 내용 secret hooni 2019.11.21 0
819 Develop [Javascript][Ajax] 자바스크립트 강의 산출물 file hooni 2019.10.05 697
818 Develop [ios] Locale Identifiers file hooni 2018.11.29 1621
817 Develop [ios] Swift 4 Dictionary 사용하기 file hooni 2018.11.29 2023
816 Develop [ios] Swift 4 Singleton inheritance hooni 2018.10.31 1588
815 Develop [ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기 hooni 2018.10.19 1250
814 Develop [ios] APNS, Remote Push 수신 시점에서 앱의 3가지 실행 상태 hooni 2018.10.19 965
813 Develop [ios] Swift 4 String, Date, DateFormatter 예제 hooni 2018.10.18 1394
812 Develop [ios] Requesting Location Permissions in iOS file hooni 2018.08.18 1599
811 Develop [PHP] MacOS에서 PHP 7 설치하기 file hooni 2018.05.11 4878
810 Develop [php] Connect to Firebase Console in Laravel file hooni 2018.05.09 3110
Board Pagination Prev 1 2 3 4 5 ... 53 Next
/ 53