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