| 12345678910111213141516171819 |
- //
- // PhotoCollectionViewCell.m
- // model
- //
- // Created by liufei on 2018/7/25.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import "PhotoCollectionViewCell.h"
- @implementation PhotoCollectionViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.userImageView.contentMode = UIViewContentModeScaleAspectFill;
- // Initialization code
- }
- @end
|