AlbumPhotoCollectionViewCell.m 823 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // XHAlbumPhotoCollectionViewCell.m
  3. // MessageDisplayExample
  4. //
  5. // Created by 曾 宪华 on 14-5-20.
  6. // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
  7. //
  8. #import "AlbumPhotoCollectionViewCell.h"
  9. @implementation AlbumPhotoCollectionViewCell
  10. #pragma mark - Propertys
  11. - (UIImageView *)photoImageView {
  12. _photoImageView = [[UIImageView alloc] initWithFrame:self.bounds];
  13. _photoImageView.frame = CGRectMake(0,0,85,85);
  14. _photoImageView.userInteractionEnabled = NO;
  15. [self.contentView addSubview:_photoImageView];
  16. return _photoImageView;}
  17. #pragma mark - Life Cycle
  18. - (id)initWithFrame:(CGRect)frame {
  19. self = [super initWithFrame:frame];
  20. // if (self) {
  21. //
  22. //
  23. // }
  24. return self;
  25. }
  26. @end