Files
keyboard/keyBoard/Class/Pay/V/KBSvipBenefitBgView.m

22 lines
434 B
Mathematica
Raw Normal View History

2026-02-04 12:48:18 +08:00
//
// 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