//
|
// StartCollectionViewCell.m
|
// BuWanVideo2.0
|
//
|
// Created by apple on 16/12/30.
|
// Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import "StartCollectionViewCell.h"
|
|
@implementation StartCollectionViewCell
|
|
- (void)awakeFromNib {
|
[super awakeFromNib];
|
_image.layer.masksToBounds=YES;
|
_image.layer.cornerRadius=(KScreenW-100)/6;
|
|
_image.contentMode=UIViewContentModeScaleAspectFill;
|
}
|
@end
|