PhotoCollectionViewCell.m 383 B

123456789101112131415161718192021
  1. //
  2. // PhotoCollectionViewCell.m
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/10/12.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "PhotoCollectionViewCell.h"
  9. @implementation PhotoCollectionViewCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.photoIMG.contentMode = UIViewContentModeScaleAspectFill;
  14. self.photoIMG.clipsToBounds = YES;
  15. }
  16. @end