Views 947 Votes 0 Comment 0
?

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

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
No. Category Subject Author Date Views
389 System/OS [linux] ipchains 사용예(패킷 필터링) hooni 2003.04.23 14173
388 System/OS [linux] ipchains 옵션 hooni 2003.04.23 13613
387 System/OS [linux] ipfwadm를 이용한 패킷필터링(구버전) hooni 2003.04.23 13017
386 System/OS [linux] iptables 명령어 매뉴얼(options) hooni 2003.04.23 11335
385 System/OS [linux] iptables 초간단 세팅 스크립트 hooni 2017.09.26 1237
384 System/OS [linux] man 명령어 뽀개기.. hooni 2003.04.23 8723
383 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 47936
382 System/OS [linux] Oracle8.1.6, Mysql+PHP+Zend Optimizer+APACHE+Tomcat(jsp,servlet)+IMAP+gd hooni 2003.04.23 32452
381 System/OS [linux] Proftpd 설치 가이드 hooni 2003.04.23 13021
380 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 12851
379 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4616
378 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12685
377 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12412
376 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14570
375 System/OS [linux] split 명령어 hooni 2014.03.11 4305
374 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10493
Board Pagination Prev 1 ... 48 49 50 51 52 ... 74 Next
/ 74