欢迎光临
我们一直在努力

YJSettingTableView

建站超值云服务器,限时71元/月

YJSettingTableView

项目介绍:

YJSettingTableView

pod ‘YJSettingTableView’ v1.0.0
$ gem install
cocoapods
CocoaPods 0.39.0+ is required to build YJSettingTableView 1.0.0+.


Podfile
To integrate YJSettingTableView into your Xcode project using CocoaPods, specify it in your Podfile:
[Objective-C] 查看源文件 复制代码

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'

target 'TargetName' do
pod 'YJSettingTableView'
end

使用说明
使用方式
将YJSettingTableView导入工程中即可新建tableViewController 继承与YJSettingTableViewController在自己的业务逻辑类里面只需要关注模型即可

[Objective-C] 查看源文件 复制代码

// 1. 导入头文件
#import "YJSettingTableViewController.h"
// 继承 YJSettingTableViewController
@interface YJMainTableViewController : YJSettingTableViewController
@end

// 2.封装模型
- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"coderYJ";
    /// 第0组
    [self setupGroup0];
    /// 第1组
    [self setupGroup1];
}
    /// 第0组
- (void)setupGroup0{
    // 创建基本模型
    YJSettingItem *item0 = [YJSettingItem itemWithTitle:@"第0组第0行"];
    // 设置字体
    item0.titleFont = [UIFont systemFontOfSize:20];

    YJSettingItem *item1 = [YJSettingItem itemWithTitle:@"第0组第1行"];
    item1.subTitle = @"我是子标题1";
    item1.subTitleFont = [UIFont systemFontOfSize:15];

    YJSettingItem *item2 = [YJSettingItem itemWithTitle:@"第0组第2行"];
    item2.subTitle = @"我是子标题2";
    item2.subTitleFont = [UIFont systemFontOfSize:17];

    YJSettingItem *item3 = [YJSettingItem itemWithTitle:@"第0组第3行"];
    item3.subTitle = @"我是子标题2";
    item3.subTitleFont = [UIFont systemFontOfSize:20];

    // 将行模型数组添加到组模型中
    YJSettingGroup *group =  [self addGroupWithItems:@[item0, item1, item2, item3]];
    // 设置这一组的头部标题
    group.headerTitle = @"xxoo";
    // 设置这一组的尾部标题
    group.footTitle = @"123";
}
/// 第1组
- (void)setupGroup1{
    // 创建箭头模型
    YJSettingArrowItem *item0 = [YJSettingArrowItem itemWithTitle:@"比分直播"];
    // 绑定目标控制器
    item0.desVc = [YJScoreViewController class];

    // 创建箭头模型
    YJSettingItem *item1 = [YJSettingArrowItem itemWithTitle:@"点我弹框"];
    // 点击这一行cell要做的操作
    item1.operationBlock =^(NSIndexPath *indexPath){
        [MBProgressHUD showSuccess:@"微信公众号关注coderYJ,持续更新实用的干货"];
    };

    YJSettingArrowItem *item2 = [YJSettingArrowItem itemWithTitle:@"传递参数"];

    // 防止循环引用
    __weak typeof(self) weakSelf = self;
    item2.operationBlock = ^(NSIndexPath *indexPath){
        UIViewController *vc = [[UIViewController alloc] init];
        vc.view.backgroundColor = [UIColor yellowColor];
        // 传递参数
        vc.title = @"xxoo";
        [weakSelf.navigationController pushViewController:vc animated:YES];
    };
    YJSettingSwitchItem *item3 = [YJSettingSwitchItem itemWithTitle:@"第1组第3行"];
    item3.on = YES;

    // 将行模型数组添加到组模型中
    [self addGroupWithItems:@[item0, item1, item2, item3]];
}


DEMO 直接下载:

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » YJSettingTableView
分享到: 更多 (0)