美文网首页
iOS选项卡第三方库

iOS选项卡第三方库

作者: 啵啵_long_港 | 来源:发表于2017-12-19 12:54 被阅读4次

通用按钮选项卡

安装: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];
    }];

github地址

相关文章

网友评论

      本文标题:iOS选项卡第三方库

      本文链接:https://www.haomeiwen.com/subject/ibpbwxtx.html