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