//
|
// GuessYouLikeCollectionViewCell.m
|
// mgysVideo
|
//
|
// Created by weikou on 16/7/8.
|
// Copyright © 2016年 wgj. All rights reserved.
|
//
|
|
#import "GuessYouLikeCollectionViewCell.h"
|
|
@implementation GuessYouLikeCollectionViewCell
|
|
- (void)awakeFromNib {
|
[super awakeFromNib];
|
// Initialization code
|
self.commentVV.textColor=kGlobalLightGreyColor_210;
|
self.CommentNub.textColor=kGlobalLightGreyColor_210;
|
//添加阴影
|
self.layer.masksToBounds = NO;
|
self.layer.contentsScale = [UIScreen mainScreen].scale;
|
self.layer.shadowOpacity = 0.7f;
|
self.layer.shadowRadius = 1.0f;
|
self.layer.shadowOffset = CGSizeMake(0,2);
|
self.layer.shadowColor = kGlobalLightGreyColor_223.CGColor;
|
//设置缓存
|
self.layer.shouldRasterize = YES;
|
//设置抗锯齿边缘
|
self.layer.rasterizationScale = [UIScreen mainScreen].scale;
|
}
|
|
@end
|