19 lines
309 B
Objective-C
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
|