Contents

조회 수 958 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

JS 파일을 프로젝트로 추가하고 UIWebView 딜리게이트를 처리하는 내용

- (void)webViewDidStartLoad:(UIWebView *)webView{
    ...
    // JS파일들을 동적으로 추가하는 내용의 함수 호출
    [self injectJSCodes];
}

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    ....

    // JS 함수가 잘 로드되고 실행 되는지 확인
    NSString *jsString1 = @"picomax.alert('2100411931200932');";
    [_webView stringByEvaluatingJavaScriptFromString:jsString1];
    
    NSString *jsString2 = @"OcbiOSJS.showBarcodeScanPopup('2100411931200932');";
    [_webView stringByEvaluatingJavaScriptFromString:jsString2];
}

- (void)injectJSWithPath:(NSString *)path
{
    //현재 프로젝트의 리소스 파일의 경로 얻기.
    //NSString *resourcePath = [[NSBundle mainBundle] resourcePath];
    //NSString *path = [[NSBundle mainBundle] pathForResource:@"OcbiOSJS" ofType:@"js"];
    NSLog(@"js path : %@", path);
    NSString *jsString = [[NSString alloc] initWithContentsOfFile:path
        encoding:NSUTF8StringEncoding error:nil];

    [_webView stringByEvaluatingJavaScriptFromString:jsString];
}

- (void)injectJSCodes
{
    [self injectJSWithPath:[[NSBundle mainBundle]
        pathForResource:@"OcbiOSJS" ofType:@"js"]];

    [self injectJSWithPath:[[NSBundle mainBundle]
        pathForResource:@"OcbiOSTitleViewJS" ofType:@"js"]];
}



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
73 Develop [c#] HTML 이벤트 샘플 소스.. file hooni 2013.04.23 7742
72 Develop [c#] Hashtable <-> Json (dll 포함) file hooni 2013.04.23 80657
71 Develop [c#] BHO 한샘툴바랑 동현툴바.. secret hooni 2013.04.23 2208
70 Develop [c#] BFilter 툴바 소스 코드 ㅎㅎ file hooni 2013.04.23 7610
69 Develop [asp] 폼메일 예제와 메일 포워딩 프로그램 file hooni 2013.04.23 7132
68 Develop [asp] 폼 메일 소스 file hooni 2013.04.23 7353
67 Develop [asp] 문자열 넘겨받기 (get,post) hooni 2013.04.23 8683
66 Develop [asp] 문자열 관련 함수 요약 hooni 2013.04.23 7784
65 Develop [asp] 기본 문법과 제어문 hooni 2013.04.23 7080
64 Develop [asem] CMOS 패스워드 알아내기.. 소스.. file hooni 2003.04.23 8698
63 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 12428
62 Develop [api] 인스타그램 API Access_Token 발급 방법 (Instagram API) 3 file hooni 2018.04.05 7591
Board Pagination Prev 1 ... 60 61 62 63 64 65 66 67 68 69 ... 71 Next
/ 71