// // KXLaunchAdSkipButton.m // CAISHEN // // Created by kuxuan on 2017/8/17. // Copyright © 2017年 kuxuan. All rights reserved. // #import "KXLaunchAdSkipButton.h" @implementation KXLaunchAdSkipButton - (instancetype)initWithFrame:(CGRect)frame { if (self == [super initWithFrame:frame]) { [self setupUI]; } return self; } - (void)setupUI { // [self setBackgroundColor:[UIColor colorWithWhite:0 alpha:0.4]]; [self setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; self.titleLabel.font = FONT_SYS(13); self.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter; self.layer.cornerRadius = self.frame.size.height/2.0; self.layer.masksToBounds = YES; } - (void)setDuration:(NSInteger)duration { _duration = duration; [self setTitle:[NSString stringWithFormat:@"倒计时%lds",duration] forState:UIControlStateNormal]; } @end