Develop
2015.02.10 18:08
[ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기
조회 수 2187 댓글 0
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"]]; }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
241 | Develop | 프로그래밍 소스 관련 사이트.. | hooni | 2013.04.23 | 17902 |
240 | Develop |
[ios] PHP로 APNS 프로바이더~
![]() |
hooni | 2013.06.27 | 17944 |
239 | Develop |
[winmobile] 윈도우 모바일 간단한 테스트 코드 ㅋㅋ
![]() |
hooni | 2013.04.23 | 17956 |
238 | PPT |
[ppt] 웜프레임워크 발표 양식(국보연)
![]() |
hooni | 2013.04.23 | 17961 |
237 | Develop | [unix] 쉘 스크립트 예제 모음 | hooni | 2003.04.23 | 17977 |
236 | System/OS | [switch] 시스코 스위치 관리자 암호 초기화 방법 | hooni | 2013.04.23 | 18029 |
235 | PPT |
[doc] 논문.. VoIP 관련.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 18043 |
234 | Algorithm | [security] RSA 암호화 설명과 예.. | hooni | 2013.04.23 | 18062 |
233 | Develop | [c++] 문자열 뒤집기(문자열 거꾸로 출력) | hooni | 2013.04.23 | 18079 |
232 | Develop | [c] ICMP 패킷을 이용한 장난감 | hooni | 2003.04.23 | 18127 |
231 | Develop |
[java] 입출력 스트림 1부 (문자)
![]() |
hooni | 2013.04.23 | 18154 |
230 | Develop |
[c] 팩토리얼 서버/클라이언트..
![]() |
hooni | 2003.04.23 | 18269 |