34 lines
888 B
Objective-C
34 lines
888 B
Objective-C
//
|
|
// MaskTimeTimeViewCell.m
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/21.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "MaskTimeTimeViewCell.h"
|
|
|
|
@implementation MaskTimeTimeViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
self.timeholdBack.layer.masksToBounds= NO;
|
|
self.timeholdBack.layer.cornerRadius =10;
|
|
self.timeholdBack.layer.shadowOffset = CGSizeMake(0,0);
|
|
self.timeholdBack.layer.shadowColor = GIGARGB(233, 226, 226, 1).CGColor;
|
|
self.timeholdBack.layer.shadowOpacity = 1;
|
|
//self.timeholdBack.layer.shadowRadius = 6;
|
|
self.useravator.layer.masksToBounds = YES;
|
|
self.useravator.layer.cornerRadius = 4;
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|