Contents

조회 수 967 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
117 Develop [C#] MD5, SHA1 해시 & 인코딩 hooni 2013.04.23 77869
116 Develop [c#] Json 라이브러리 (System.Net.Json.dll) file hooni 2013.04.23 58545
115 Develop [c#] HTML 이벤트 샘플 소스.. file hooni 2013.04.23 7744
114 Develop [c#] Hashtable <-> Json (dll 포함) file hooni 2013.04.23 80660
113 Develop [c#] BHO 한샘툴바랑 동현툴바.. secret hooni 2013.04.23 2208
112 Develop [c#] BFilter 툴바 소스 코드 ㅎㅎ file hooni 2013.04.23 7612
111 System/OS [bios] 시스템 부팅 도중 발생하는 비프음 hooni 2003.04.23 18161
110 Develop [asp] 폼메일 예제와 메일 포워딩 프로그램 file hooni 2013.04.23 7134
109 Develop [asp] 폼 메일 소스 file hooni 2013.04.23 7355
108 Develop [asp] 문자열 넘겨받기 (get,post) hooni 2013.04.23 8687
107 Develop [asp] 문자열 관련 함수 요약 hooni 2013.04.23 7789
106 Develop [asp] 기본 문법과 제어문 hooni 2013.04.23 7090
Board Pagination Prev 1 ... 84 85 86 87 88 89 90 91 92 93 ... 98 Next
/ 98