通用按钮选项卡
安装:pod 'YLBTopBtnListView'
或者:pod 'YLBTopBtnListView', :git =>'https://github.com/ProBobo/YLBTopBtnListView.git'
用法:
NSMutableArray *titleArray = [@[@"选项1",@"选项2",@"选项3",@"选项4" ] mutableCopy];
CGFloat fontHeight = 16;
UIColor *colorNormal = [UIColor grayColor];
UIColor *colorSelected = [UIColor purpleColor];
TopGiftListBtnView *topGiftListBtnView = [[TopGiftListBtnView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.frame), 44) titleArray:titleArray fontHeight:fontHeight colorNormal:colorNormal colorSelected:colorSelected titleBtn_Block:^(int tag) {
// [weakSelf titleBtn_Block_Method:tag];
}];
网友评论