詳解使用UIWebView擷取所點位置圖片URL教程

來源:互聯網
上載者:User

UIWebView擷取所點位置圖片URL教程是本文要介紹的內容,UIWebView有自己的UIResgure,如果我們手動加入自己的GestureRecognize將不能識別,如UILongPressGestureRecongnizer. 在瀏覽網頁的時候,如果看到喜歡的圖片,想把它儲存下來如何辦呢? 我們可以自己寫一個程式來實現,用uiwebview開發一個自己的瀏覽器。

關於說到uiwebview不能識別long press gesture,幸好有一個可以識別,那就是double click.因此我們註冊它,代碼如下:

 
  1. UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doubleTap:)];    
  2. doubleTap.numberOfTouchesRequired = 2;    
  3. [self.theWebView addGestureRecognizer:doubleTap];    
  4.  UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doubleTap:)];  
  5.  doubleTap.numberOfTouchesRequired = 2;  
  6.  [self.theWebView addGestureRecognizer:doubleTap]; 

然後就是實現doubleTap:

 
  1. -(void) doubleTap :(UITapGestureRecognizer*) sender    
  2. {    
  3. //  <Find HTML tag which was clicked by user>     
  4. //  <If tag is IMG, then get image URL and start saving>     
  5.     int scrollPositionY = [[self.theWebView stringByEvaluatingJavaScriptFromString:@"window.pageYOffset"] intValue];    
  6.     int scrollPositionX = [[self.theWebView stringByEvaluatingJavaScriptFromString:@"window.pageXOffset"] intValue];    
  7.         
  8.     int displayWidth = [[self.theWebView stringByEvaluatingJavaScriptFromString:@"window.outerWidth"] intValue];    
  9.     CGFloat scale = theWebView.frame.size.width / displayWidth;    
  10.         
  11.     CGPoint pt = [sender locationInView:self.theWebView];    
  12.     pt.x *= scale;    
  13.     pt.y *= scale;    
  14.     pt.x += scrollPositionX;    
  15.     pt.y += scrollPositionY;    
  16.         
  17.     NSString *js = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).tagName", pt.x, pt.y];    
  18.     NSString * tagName = [self.theWebView stringByEvaluatingJavaScriptFromString:js];    
  19.     if ([tagName isEqualToString:@"img"]) {    
  20.         NSString *imgURL = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).src", pt.x, pt.y];    
  21.         NSString *urlToSave = [self.theWebView stringByEvaluatingJavaScriptFromString:imgURL];    
  22.         NSLog(@"image url=%@", urlToSave);    
  23.     }    
  24. }   

小結:詳解使用UIWebView擷取所點位置圖片URL教程的內容介紹完了,希望本文對你有所協助!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.