GiGaMaskTime/GIGA/Modules/Me/View/HistoryView/HistoryNoDataViewCell.m

28 lines
599 B
Objective-C

//
// HistoryNoDataViewCell.m
// GIGA
//
// Created by lianxiang on 2018/9/26.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "HistoryNoDataViewCell.h"
@implementation HistoryNoDataViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
self.mianmoBtn.layer.masksToBounds = YES;
self.mianmoBtn.layer.cornerRadius = self.mianmoBtn.frame.size.height /2 ;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end