Files
WebApp/ShenQi/WMDragView/DSAvatarCollectionViewCell.m
2025-02-07 17:44:23 +08:00

19 lines
309 B
Objective-C

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