Contents

조회 수 2187 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
961 System/OS [linux] 메일서버 세팅정보(sendmail) hooni 2003.04.23 18661
960 System/OS [windows] 도스 사용 팁 hooni 2003.04.23 18633
959 Etc GSM에서 음성이 실리는 과정 요약.. hooni 2013.04.23 18630
958 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 18628
957 System/OS 무선 인증 서버.. 김도.. ㅋㅋ file hooni 2013.04.23 18623
956 Algorithm 암호 알고리즘 및 프로토콜의 이해.. file hooni 2013.04.23 18580
955 System/OS 네트워크별 MTU(최대 전송 단위) hooni 2013.04.23 18500
954 System/OS [windows] 패스워드를 잊어먹었을때.. hooni 2003.04.23 18495
953 Algorithm [security] 블럭 암호에 대해서.. hooni 2013.04.23 18471
952 PPT [php] 프레임워크 발표자료 및 샘플 구현 소스 file hooni 2013.04.23 18432
951 Develop [ios] 자주 쓰는 패턴과 API hooni 2013.04.23 18428
950 System/OS [switch] 시스코 카탈리스트(Cisco Catalyst) 기본 설정 hooni 2013.04.23 18383
Board Pagination Prev 1 ... 14 15 16 17 18 19 20 21 22 23 ... 99 Next
/ 99