SDPhotoGroup.m 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //
  2. // SDPhotoGroup.m
  3. // SDPhotoBrowser
  4. //
  5. // Created by aier on 15-2-4.
  6. // Copyright (c) 2015年 GSD. All rights reserved.
  7. //
  8. #import "SDPhotoGroup.h"
  9. #import "SDPhotoItem.h"
  10. #import "UIButton+WebCache.h"
  11. #import "SDPhotoBrowser.h"
  12. #define SDPhotoGroupImageMargin 15
  13. @interface SDPhotoGroup () <SDPhotoBrowserDelegate>
  14. @end
  15. @implementation SDPhotoGroup
  16. - (id)initWithFrame:(CGRect)frame
  17. {
  18. self = [super initWithFrame:frame];
  19. if (self) {
  20. // 清除图片缓存,便于测试
  21. [[SDWebImageManager sharedManager].imageCache clearMemory];
  22. }
  23. return self;
  24. }
  25. - (void)setPhotoItemArray:(NSArray *)photoItemArray
  26. {
  27. _photoItemArray = photoItemArray;
  28. [photoItemArray enumerateObjectsUsingBlock:^(SDPhotoItem *obj, NSUInteger idx, BOOL *stop) {
  29. UIButton *btn = [[UIButton alloc] init];
  30. [btn sd_setImageWithURL:[NSURL URLWithString:obj.thumbnail_pic] forState:UIControlStateNormal];
  31. btn.tag = idx;
  32. NSLog(@"====%lu",(unsigned long)idx);
  33. [btn addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
  34. [self addSubview:btn];
  35. }];
  36. }
  37. - (void)layoutSubviews
  38. {
  39. [super layoutSubviews];
  40. int imageCount = (int) self.photoItemArray.count;
  41. int perRowImageCount = ((imageCount == 4) ? 2 : 3);
  42. int totalRowCount = imageCount / perRowImageCount + 0.99999; // ((imageCount + perRowImageCount - 1) / perRowImageCount)
  43. CGFloat w = 80;
  44. CGFloat h = 80;
  45. [self.subviews enumerateObjectsUsingBlock:^(UIButton *btn, NSUInteger idx, BOOL *stop) {
  46. int rowIndex = (int)( idx / perRowImageCount);
  47. int columnIndex = idx % perRowImageCount;
  48. CGFloat x = columnIndex * (w + SDPhotoGroupImageMargin);
  49. CGFloat y = rowIndex * (h + SDPhotoGroupImageMargin);
  50. btn.frame = CGRectMake(x, y, w, h);
  51. }];
  52. self.frame = CGRectMake(10, 10, 280, totalRowCount * (SDPhotoGroupImageMargin + h));
  53. }
  54. - (void)buttonClick:(UIButton *)button
  55. {
  56. SDPhotoBrowser *browser = [[SDPhotoBrowser alloc] init];
  57. browser.sourceImagesContainerView = self; // 原图的父控件
  58. browser.imageCount = self.photoItemArray.count; // 图片总数
  59. browser.currentImageIndex = (int) button.tag;
  60. browser.delegate = self;
  61. [browser show];
  62. }
  63. #pragma mark - photobrowser代理方法
  64. // 返回临时占位图片(即原来的小图)
  65. - (UIImage *)photoBrowser:(SDPhotoBrowser *)browser placeholderImageForIndex:(NSInteger)index
  66. {
  67. return [self.subviews[index] currentImage];
  68. }
  69. // 返回高质量图片的url
  70. - (NSURL *)photoBrowser:(SDPhotoBrowser *)browser highQualityImageURLForIndex:(NSInteger)index
  71. {
  72. NSString *urlStr = [[self.photoItemArray[index] thumbnail_pic] stringByReplacingOccurrencesOfString:@"thumbnail" withString:@"bmiddle"];
  73. return [NSURL URLWithString:urlStr];
  74. }
  75. @end
  76. // 版权属于原作者
  77. // http://code4app.com (cn) http://code4app.net (en)
  78. // 发布代码于最专业的源码分享网站: Code4App.com