美文网首页
仿Instagram 图片预览效果

仿Instagram 图片预览效果

作者: 有毒的程序猿 | 来源:发表于2020-04-24 11:59 被阅读0次

1.效果图

YHPinchPhotoBrowser.gif

2.使用方法

// 导入头文件
#import "UIViewController+YHPinchPhotoBrowser.h"

__weak typeof(self) weakSelf = self;
self.yhPhotoBrowser.bz_dataSource = ^(UIPinchGestureRecognizer * _Nonnull recognizer, LocationInTarget  _Nonnull locationInTarget) {
       if (locationInTarget) {
           locationInTarget(weakSelf.sinleImageView);
       }
   };
__weak typeof(self) weakSelf = self;
  self.yhPhotoBrowser.bz_dataSource = ^(UIPinchGestureRecognizer * _Nonnull recognizer, LocationInTarget  _Nonnull locationInTarget) {
      [weakSelf locationInImageView:recognizer locationInTarget:locationInTarget];
  };
  
- (void)locationInImageView:(UIPinchGestureRecognizer*)recognizer
         locationInTarget:(LocationInTarget)locationInTarget {
  CGPoint locationTable = [recognizer locationInView:self.tableView];
  NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:locationTable];
  YHImageTableViewCell *targetCell = (YHImageTableViewCell *)[self.tableView cellForRowAtIndexPath:indexPath];
  UIImageView *imgeView = [targetCell getCurrentImageView];
  if (locationInTarget) {
      locationInTarget(imgeView);
  }
}

3.demo地址

相关文章

网友评论

      本文标题:仿Instagram 图片预览效果

      本文链接:https://www.haomeiwen.com/subject/rtoxwhtx.html