PhotoCollectionViewCell.m 371 B

12345678910111213141516171819
  1. //
  2. // PhotoCollectionViewCell.m
  3. // model
  4. //
  5. // Created by liufei on 2018/7/25.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. //
  8. #import "PhotoCollectionViewCell.h"
  9. @implementation PhotoCollectionViewCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. self.userImageView.contentMode = UIViewContentModeScaleAspectFill;
  13. // Initialization code
  14. }
  15. @end