Contents

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