IVTMeLiveAllUserCollectionViewCell.m 869 Bytes
//
//  IVTMeLiveAllUserCollectionViewCell.m
//  IVTMeLiveTwo
//
//  Created by xrg on 16/8/26.
//  Copyright © 2016年 QLQ. All rights reserved.
//

#import "IVTMeLiveAllUserCollectionViewCell.h"

@implementation IVTMeLiveAllUserCollectionViewCell
- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self initUI];
    }
    return self;
}

- (void)initUI
{
    self.userHeadImageView = [[UIImageView alloc]init];
    self.userHeadImageView.userInteractionEnabled = YES;
    [self.contentView addSubview:self.userHeadImageView];
    [self.userHeadImageView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(self.contentView);
    }];
    self.userHeadImageView.clipsToBounds = YES;
    self.userHeadImageView.layer.cornerRadius = self.contentView.bounds.size.height / 2.0;
}



@end