Files
WebApp/ShenQi/WMDragView/DSAvatarCollectionViewCell.m
2025-01-11 14:58:16 +08:00

19 lines
309 B
Objective-C

//
// DSAvatarCollectionViewCell.m
// VietnamGame
//
//
#import "DSAvatarCollectionViewCell.h"
@implementation DSAvatarCollectionViewCell
- (void)awakeFromNib {
[super awakeFromNib];
self.avatarImageView.layer.cornerRadius = 30.f;
self.avatarImageView.layer.masksToBounds = YES;
}
@end