어떻게 하면 UIWebView 가 Touch 이벤트 에 응답 할 수 있 습 니까?

UIWebView 는 터치 이벤트 에 응답 하지 못 해 오래전부터 해결 하기 어 려 웠 다.마지막 으로 UIC WebView 라 는 것 이 있 습 니 다. private api 를 사 용 했 지만 사용 할 수 있 습 니 다.그러나 - - UICWebView 또는 UIWebDocumentView 로 사건 을 얻 는 방법 은 iOS 4 에서 100% 오류 가 발생 할 수 있 습 니 다 (UIWebDocumentView 라 는 물건 이 없어 졌 기 때 문 입 니 다).아래 방법 으로 UIWebView 가 Touch 이벤트 에 응답 할 수 있 고 스크롤 드래그 의 bouncing 에 영향 을 주지 않 습 니 다.
    터치 의 개수 나 좌표 가 필요 하 다 면 간단 하지만 코드 에 있 는 자 바스 크 립 트 를 스스로 수정 해 야 합 니 다.
- (void)viewDidLoad {
    [super viewDidLoad];
    self.webView.delegate=self;
    NSString *resourcePath = [ [NSBundle mainBundle] resourcePath];
    NSString *filePath = [resourcePath stringByAppendingPathComponent:@"test.html"];
    NSString *htmlstring = [[NSString alloc] initWithContentsOfFile:filePath  encoding:NSUTF8StringEncoding error:nil];
    NSString *newHTMLString = 
        [htmlstring stringByAppendingString:
            @"<script language=\"javascript\">
                document.ontouchstart = 
                    function(){
                        document.location=\"myweb:touch:start\";
                    }; 
                document.ontouchend = 
                    function(){
                        document.location=\"myweb:touch:end\";
                    };
                document.ontouchmove =
                    function(){
                        document.location=\"myweb:touch:move\";
                    }
            </script>"
        ];
    [self.webView loadHTMLString:newHTMLString baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];
    [htmlstring release];
}


- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {
    NSString *requestString = [[request URL] absoluteString];
    NSArray *components = [requestString componentsSeparatedByString:@":"];
    if ([components count] > 1 && [(NSString *)[components objectAtIndex:0] isEqualToString:@"myweb"]) {
        if([(NSString *)[components objectAtIndex:1] isEqualToString:@"touch"]) {
            NSLog(@"%@",[components objectAtIndex:2]);
        }
        return NO;
    }
    return YES;
}

원본 주소:http://apps.hi.baidu.com/share/detail/40317282

좋은 웹페이지 즐겨찾기