TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Aug 2017 |
Maintained by XiaoHange.
JQPhotoBrowser: 高仿微信图片浏览器!
1.0.1 更新cocoapods
1.0.0 基础版本发布
JQPhotoBrowser
to your project. urlArray = @[照片地址数组];
for (int i = 0; i<urlArray.count; i++) {
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(i%3 * 100 + (i%3 + 1)*(SCREENWIDTH-300)/4.0,100 + i/3 * 100 + (i/3 + 1)*(SCREENWIDTH-300)/4.0, 100, 100)];
imageView.contentMode = UIViewContentModeScaleAspectFill;
imageView.layer.masksToBounds = YES;
[imageView sd_setImageWithURL:[NSURL URLWithString:urlArray[i]] placeholderImage:[UIImage imageNamed:@"test.jpg"]];
[imageView sd_setImageWithURL:[NSURL URLWithString:urlArray[i]] placeholderImage:[UIImage imageNamed:@"test.jpg"]];
[imageView addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(imageViewTapped:)]];
imageView.tag = 100+i;
imageView.userInteractionEnabled = YES;
[self.view addSubview:imageView];
}
- (void)imageViewTapped:(UITapGestureRecognizer *)gesture
{
UIImageView *imageView = (UIImageView *)gesture.view;
NSMutableArray *items = [[NSMutableArray alloc] init];
for (int i = 0; i<urlArray.count; i++) {
JQPhotoItem *photoItem = [[JQPhotoItem alloc] init];
photoItem.thumbView = [self.view viewWithTag:i+100];
photoItem.originImageUrl = [NSURL URLWithString:urlArray[i]];
[items addObject:photoItem];
}
JQPhotoBrowser *photoBrowser = [[JQPhotoBrowser alloc] initWithPhotoItems:items];
photoBrowser.shouldShowPageControl = YES;
photoBrowser.pageType = 1; // 提供两种类型
[photoBrowser showFromImageView:imageView andCurrentIndex:imageView.tag-100 completion:nil];
}
iOS开发者交流群:①群:446310206 ②群:426087546 喜欢就
Love is every every every star! Your support is my renewed motivation!
This code is distributed under the terms and conditions of the MIT license.