STCollectionPhotoCell.m 404 B

1234567891011121314151617181920
  1. //
  2. // STCollectionPhotoCell.m
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/18.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "STCollectionPhotoCell.h"
  9. @implementation STCollectionPhotoCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. self.bgImgView.contentMode = UIViewContentModeScaleAspectFill;
  14. self.bgImgView.clipsToBounds = YES;
  15. }
  16. @end