HWHomeListCell.m 304 B

1234567891011121314151617181920
  1. //
  2. // HWHomeListCell.m
  3. // Private-X
  4. //
  5. // Created by 余衡武 on 2022/3/21.
  6. //
  7. #import "HWHomeListCell.h"
  8. @implementation HWHomeListCell
  9. - (void)awakeFromNib {
  10. [super awakeFromNib];
  11. self.iconImageView.layer.cornerRadius = 20;
  12. self.iconImageView.layer.masksToBounds = YES;
  13. }
  14. @end