练习

首先带入CKSlideMenu.h第三方库,然后在下面的操作


创建MainTabbar.h并且继承UITabBarController

#import "MainTabbar.h"

@interface MainTabbar ()

@end

@implementation MainTabbar

- (void)viewDidLoad {

    [super viewDidLoad];

    [self createTabBar];

}

- (void)createTabBar{

    NSArray *array=@[@"CKChildViewController",@"TwoViewController"];

    NSArray*UnSelectedImageArray=@[@"新闻",@"视频"];

//    NSArray *SelectedImageArray=@[@"新闻1",@"视频1"];

    //控制器数组

    NSMutableArray *ViewController=[[NSMutableArray alloc]init];

    //根据控制器的名称 创建相应的控制器 并添加到相应的数组里

    for(inti=0; i

        //字符串创建控制器

        UIViewController*VC=[[NSClassFromString(array[i])alloc]init];

        UINavigationController *NAV=[[UINavigationController alloc]initWithRootViewController:VC];

        //设置TabBar的选中图片和未选中图片

        NAV.tabBarItem.image=[[UIImage imageNamed:UnSelectedImageArray[i]]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal ];

        NAV.title=UnSelectedImageArray[i];

        //将控制器添加到数组

        NAV.navigationBar.barTintColor=[UIColor blackColor];

        [ViewControlleraddObject:NAV];


    }

    self.viewControllers=ViewController;

}

@end

再创建CKChildViewController  继承UIViewController

/**  */

@property (nonatomic,assign)NSInteger type;

在.m里面写

#import "CKChildViewController.h"

#import "CKSlideMenu.h"

#import "CkViewController.h"

#import "TwoViewController.h"

#import "ckkenViewController.h"

@interface CKChildViewController ()

@end

@implementationCKChildViewController

-(void)viewDidAppear:(BOOL)animated{

    self.navigationController.navigationBar.hidden = YES;

}

-(void)viewWillDisappear:(BOOL)animated{

    self.navigationController.navigationBar.hidden = NO;

}

- (void)viewDidLoad {

    [super viewDidLoad];

    self.view.backgroundColor = [UIColor whiteColor];

//    self.automaticallyAdjustsScrollViewInsets = NO;


        NSArray *titles = @[@"今日",@"阿萨德",@"爱迪生",@"暗示",@"说的",@"粉丝",@"阿萨德",@"爱迪生",@"暗示",@"说的"];

        NSMutableArray *arr = [NSMutableArray array];

        for(inti =0; i

            [arraddObject:[CkViewControllernew]];

        }

        CKSlideMenu*slideMenu = [[CKSlideMenualloc]initWithFrame:CGRectMake(0,30,self.view.frame.size.width-30,40)titles:titlescontrollers:arr];

        slideMenu.bodyFrame=CGRectMake(0,  64,self.view.frame.size.width,self.view.frame.size.height-30);

        [slideMenuscrollToIndex:3];

        [self.viewaddSubview:slideMenu];


    UIButton * btn = [[UIButton alloc]initWithFrame:CGRectMake(380, 35, 30, 30)];

    [btnsetImage:[UIImage imageNamed:@"qq"] forState:UIControlStateNormal];

    [btnaddTarget:self action:@selector(els) forControlEvents:UIControlEventTouchUpInside];


    [self.viewaddSubview:btn];

}

-(void)els{

    ckkenViewController *coy = [ckkenViewController new];

    [self.navigationController pushViewController:coy animated:YES];

}

写完并且还的创建它的跳转控制器

在创建CkViewController继承与UIViewController

#import "CkViewController.h"

#import "TwoViewController.h"

@interface CkViewController ()<UITableViewDelegate,UITableViewDataSource>

@property(nonatomic,strong)UITableView * tableView;

@end

@implementationCkViewController

- (void)viewDidLoad {

    [super viewDidLoad];


    [self.viewaddSubview:self.tableView];


    //添加表格


    [self.viewaddSubview:self.tableView];

}

-(UITableView*)tableView{

    if (!_tableView) {

        _tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 720) style:UITableViewStylePlain];

        _tableView.delegate=self;

        _tableView.dataSource=self;


    }


    [self createTableHeaderView];

    return _tableView;

}

//每个分区有几行

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

    return 5;

}

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

    staticNSString* str =@"123";

    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:str];

    if(!cell) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:str];


    }

    tableView.rowHeight=100;

    NSArray * arrone = @[@"宾利添越.兰博基尼Urus同平台!2.0T的新途锐哪款值得买",@"怦然心动!全新传祺GS5巴黎首秀 预售价12万起",@"一年年一度的豪车大甩卖开始了,哇塞,BBA都这么便宜了?",@"掏钱买车必看,2019年国六排放影响颇深...",@"主场作战还等着输给德国佬,巴西还能行吗?"];

    UILabel* labone = [[UILabelalloc]initWithFrame:CGRectMake(10,3,280,80)];

    labone.text= arrone[indexPath.row];

    labone.numberOfLines=0;

    [celladdSubview:labone];


    NSArray * arrtwo = @[@"大Car频道 102评论 3694次浏览 10分钟前",@"汽车探索 36评论 2925次浏览",@"车若初见 190评论 1712次浏览 32分钟前",@"车叫兽 52评论 1987浏览",@"车教授 88评论 1087浏览"];

    UILabel* labtwo = [[UILabelalloc]initWithFrame:CGRectMake(10,60,280,40)];

    labtwo.text= arrtwo[indexPath.row];

    labtwo.numberOfLines=0;

    labtwo.font= [UIFontsystemFontOfSize:13];

    labtwo.textColor= [UIColorlightGrayColor];

    [celladdSubview:labtwo];


    NSArray * arraythree = @[@"w1",@"w2",@"w3",@"w4",@"w5"];

    UIImageView* imgV = [[UIImageViewalloc]initWithFrame:CGRectMake(290,3,120,90)];

    imgV.image= [UIImageimageNamed:arraythree[indexPath.row]];

    [celladdSubview:imgV];


    returncell;

}

-(void)createTableHeaderView{

    UIView* bg = [[UIViewalloc]initWithFrame:CGRectMake(0,0,self.view.frame.size.width,100)];

    bg.backgroundColor = [UIColor colorWithRed:249/255.0 green:249/255.0 blue:249/255.0 alpha:1];

    NSArray * array = @[@"小仓说车",@"超级试驾",@"我的订阅",@"实用工具"];

    for(inti =0; i< array.count; i++) {

        UIButton* btn = [[UIButtonalloc]initWithFrame:CGRectMake(30+ ((self.view.frame.size.width-150)/4+30)*i,10, (self.view.frame.size.width-150)/4, (self.view.frame.size.width-150)/4)];

        //        [btn setBackgroundColor:[UIColor redColor]];

        NSArray* arrtu =@[@"q1",@"q2",@"q3",@"q4"];

        [btnsetImage:[UIImage imageNamed:arrtu[i]] forState:UIControlStateNormal];

        //        btn.layer.cornerRadius =((self.view.frame.size.width - 150)/4)/2;

        //        btn.layer.masksToBounds = YES;


        UILabel* label = [[UILabelalloc]initWithFrame:CGRectMake(30+ ((self.view.frame.size.width-150)/4+30)*i,25+ (self.view.frame.size.width-150)/4, (self.view.frame.size.width-150)/3,20)];

        label.textAlignment = NSTextAlignmentCenter;

        label.font= [UIFontsystemFontOfSize:15];

        label.textColor= [UIColordarkGrayColor];

        label.center=CGPointMake(btn.center.x,25+ (self.view.frame.size.width-150)/4);

        label.text= array[i];

        //添加label

        [bgaddSubview:label];

        //添加按钮

        [bgaddSubview:btn];

    }

    _tableView.tableHeaderView = bg;

}

@end

还需创建一个TwoViewController.h 另一个控制器

self.view.backgroundColor = [UIColor redColor];

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,802评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,109评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,683评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,458评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,452评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,505评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,901评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,550评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,763评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,556评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,629评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,330评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,898评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,897评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,140评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,807评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,339评论 2 342

推荐阅读更多精彩内容