24 lines
499 B
Objective-C
24 lines
499 B
Objective-C
//
|
|
// KBSvipBenefitBgView.m
|
|
// keyBoard
|
|
//
|
|
// 权益列表背景装饰视图:白色背景 + 15圆角
|
|
//
|
|
|
|
#import "KBSvipBenefitBgView.h"
|
|
|
|
@implementation KBSvipBenefitBgView
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame {
|
|
if (self = [super initWithFrame:frame]) {
|
|
self.backgroundColor = [UIColor colorWithHex:0xF6F7FB];
|
|
// self.backgroundColor = [UIColor redColor];
|
|
|
|
self.layer.cornerRadius = 15;
|
|
self.layer.masksToBounds = YES;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|