首页 > UIWebView之获取所点位置图片URL

UIWebView之获取所点位置图片URL

UIWebView有自己的UIResgure,如果我们手动加入自己的GestureRecognize将不能识别,如UILongPressGestureRecongnizer. 在浏览网页的时候,如果看到喜欢的图片,想把它保存下来如何办呢? 我们可以自己写一个程序来实现,用uiwebview开发一个自己的浏览器





关面说到uiwebview不能识别long press gesture,幸好有一个可以识别,那就是double click.因此我们注册它,代码如下:

UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doubleTap:)]; 

doubleTap.numberOfTouchesRequired = 2; 

[self.theWebView addGestureRecognizer:doubleTap];

然后就是实现doubleTap:

-(void) doubleTap :(UITapGestureRecognizer*) sender 



//  

//  

int scrollPositionY = [[self.theWebView stringByEvaluatingJavaScriptFromString:@"window.pageYOffset"] intValue]; 

int scrollPositionX = [[self.theWebView stringByEvaluatingJavaScriptFromString:@"window.pageXOffset"] intValue]; 



int displayWidth = [[self.theWebView stringByEvaluatingJavaScriptFromString:@"window.outerWidth"] intValue]; 

CGFloat scale = theWebView.frame.size.width / displayWidth; 



CGPoint pt = [sender locationInView:self.theWebView]; 

pt.x *= scale; 

pt.y *= scale; 

pt.x += scrollPositionX; 

pt.y += scrollPositionY; 



NSString *js = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).tagName", pt.x, pt.y]; 

NSString * tagName = [self.theWebView stringByEvaluatingJavaScriptFromString:js]; 

if ([tagName isEqualToString:@"img"]) { 

NSString *imgURL = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).src", pt.x, pt.y]; 

NSString *urlToSave = [self.theWebView stringByEvaluatingJavaScriptFromString:imgURL]; 

NSLog(@"image url=%@", urlToSave); 



}

这样我们就可以得到图片的url,然后下载保存就行了。

转载于:https://www.cnblogs.com/zsw-1993/archive/2012/12/17/4880565.html

更多相关:

  • //检查更新页面- (void)Renew{        NSDictionary *infoDic = [[NSBundle mainBundle]infoDictionary];        NSString *version = [infoDic valueForKey:@"CFBundleShortVersionStrin...

  • * 苹果的"生态圈",钥匙串访问,使用 AES 256 加密算法,能够保证用户密码的安全 * 钥匙串访问SDK,是苹果在 `iOS 7.0.3` 版本以后公布的 * 钥匙串访问的接口是纯 C 语言的,但是,网络上有框架把它封装成 OC 的,使用相当简单! * 钥匙串访问的密码保存在哪里?     * 只有苹果知道!是为了进一步保障...

  • IOS开发数据库篇—SQLite模糊查询 一、示例 说明:本文简单示例了SQLite的模糊查询 1.新建一个继承自NSObject的模型 该类中的代码: 1 // 2 // YYPerson.h 3 // 03-模糊查询 4 // 5 // Created by apple on 14-7-27. 6 // C...