1234567891011121314151617181920 |
- //
- // HWHomeListCell.m
- // Private-X
- //
- // Created by 余衡武 on 2022/3/21.
- //
- #import "HWHomeListCell.h"
- @implementation HWHomeListCell
- - (void)awakeFromNib {
- [super awakeFromNib];
-
- self.iconImageView.layer.cornerRadius = 20;
- self.iconImageView.layer.masksToBounds = YES;
- }
- @end
|