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"]];
}



?

  1. [c] 도메인(호스트)으로 IP정보 알아오기.. (nslookup과 비슷)

    Date2013.04.23 CategoryDevelop Byhooni Views6934
    Read More
  2. [c] 숫자 맞추는 게임..

    Date2013.04.23 CategoryDevelop Byhooni Views6932
    Read More
  3. [c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자

    Date2003.04.23 CategoryDevelop Byhooni Views6928
    Read More
  4. [php] 빔 프로젝터 예약 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views6924
    Read More
  5. [c] 소켓의 세가지 동작모드

    Date2003.04.23 CategoryDevelop Byhooni Views6911
    Read More
  6. [c] 프로세스 정보 출력하기..

    Date2003.04.23 CategoryDevelop Byhooni Views6908
    Read More
  7. [c] 맵서치인 듯(옛날 컴에서 찾은 자료)

    Date2013.04.23 CategoryDevelop Byhooni Views6904
    Read More
  8. [c] 단기과정[01/10] 과제.. swap(any data, ..)

    Date2003.04.23 CategoryDevelop Byhooni Views6904
    Read More
  9. [c] pcapdump 파일 분석 하는 프로그램.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views6900
    Read More
  10. [c] 프로세스간의 통신(파이프)

    Date2003.04.23 CategoryDevelop Byhooni Views6891
    Read More
  11. [c] 간단한 순위 루틴.. (정보처리기사)

    Date2003.04.23 CategoryDevelop Byhooni Views6874
    Read More
  12. [c] 라인수 입력받아 마름모꼴 출력하기..

    Date2003.04.23 CategoryDevelop Byhooni Views6869
    Read More
Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 ... 98 Next
/ 98