Aucune description

QBAlbumCell.m 681B

12345678910111213141516171819202122232425262728
  1. //
  2. // QBAlbumCell.m
  3. // QBImagePicker
  4. //
  5. // Created by Katsuma Tanaka on 2015/04/03.
  6. // Copyright (c) 2015 Katsuma Tanaka. All rights reserved.
  7. //
  8. #import "QBAlbumCell.h"
  9. @implementation QBAlbumCell
  10. - (void)setBorderWidth:(CGFloat)borderWidth
  11. {
  12. _borderWidth = borderWidth;
  13. self.imageView1.layer.borderColor = [[UIColor whiteColor] CGColor];
  14. self.imageView1.layer.borderWidth = borderWidth;
  15. self.imageView2.layer.borderColor = [[UIColor whiteColor] CGColor];
  16. self.imageView2.layer.borderWidth = borderWidth;
  17. self.imageView3.layer.borderColor = [[UIColor whiteColor] CGColor];
  18. self.imageView3.layer.borderWidth = borderWidth;
  19. }
  20. @end