处理svip
This commit is contained in:
21
keyBoard/Class/Pay/V/KBSvipBenefitBgView.m
Normal file
21
keyBoard/Class/Pay/V/KBSvipBenefitBgView.m
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// KBSvipBenefitBgView.m
|
||||
// keyBoard
|
||||
//
|
||||
// 权益列表背景装饰视图:白色背景 + 15圆角
|
||||
//
|
||||
|
||||
#import "KBSvipBenefitBgView.h"
|
||||
|
||||
@implementation KBSvipBenefitBgView
|
||||
|
||||
- (instancetype)initWithFrame:(CGRect)frame {
|
||||
if (self = [super initWithFrame:frame]) {
|
||||
self.backgroundColor = [UIColor whiteColor];
|
||||
self.layer.cornerRadius = 15;
|
||||
self.layer.masksToBounds = YES;
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user