Develop
2015.02.10 18:08
[ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기
Views 2176 Comment 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"]]; }
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
241 | Develop | [c] OpenGL 색 입방체의 회전(입체) | hooni | 2003.04.23 | 8974 |
240 | Develop | [c] OpenGL 마우스 이벤트 | hooni | 2003.04.23 | 10021 |
239 | Develop | [c] OpenGL 관측점 이동 | hooni | 2003.04.23 | 9385 |
238 | Develop | [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치 | hooni | 2016.10.03 | 5055 |
237 | Develop |
[c] KNN(K-nearest neighbor) 패턴인식 과제..
![]() |
hooni | 2013.04.23 | 8557 |
236 | Develop |
[c] kmp 활용 search
![]() |
hooni | 2013.04.23 | 8385 |
235 | Develop |
[c] IP 스푸핑(ip spoof) 소스 - 정리해야 함
![]() |
hooni | 2003.04.23 | 8909 |
234 | Develop | [c] ICMP 패킷을 이용한 장난감 | hooni | 2003.04.23 | 18126 |
233 | Develop |
[c] i2osp 임시로.. ㅋㅋ
![]() |
hooni | 2003.04.23 | 9123 |
232 | Develop | [c] home env stack overflow | hooni | 2003.04.23 | 22147 |
231 | Develop | [c] GD라이브러리(jpeg)를 사용한 웹 카운터 샘플 | hooni | 2013.04.23 | 16372 |
230 | Develop |
[c] GD라이브러리 설치 테스트 소스
![]() |
hooni | 2013.04.23 | 9238 |