lianx11

首先创建4个控制器oneViewController,twoViewController,threeViewController,foureViewController 并继承与UIViewController

#import "twoViewController.h"

#import "firstViewController.h"

#import "secondViewController.h"

#define HCWidth self.view.frame.size.width

#define HCHeigh self.view.frame.size.height

@interface twoViewController ()<UITableViewDelegate,UITableViewDataSource,UICollectionViewDelegate , UICollectionViewDataSource>{

    NSArray*arrimG;

}

@property(nonatomic,strong)UITableView *tbv;

@end

staticNSString*reuseCell =@"123";

@implementationtwoViewController

- (void)viewDidLoad {

    [super viewDidLoad];


    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:nil];


    // 默认为关闭大标题模式

    self.navigationController.navigationBar.prefersLargeTitles = YES;


    self.navigationItem.title = @"健康数据";



    [self.viewaddSubview:self.tbv];

    [self createTableViewHeader];


}

-(UITableView *)tbv{

    if(!_tbv) {

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

    }


    _tbv.dataSource = self;

    _tbv.delegate=self;




    return _tbv;

}

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

    return 6;

}

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];


    if(!cell) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];

    }




    _tbv.rowHeight = 50;


    NSArray *array = @[@"健康记录",@"身体测量",@"生殖健康",@"数据结果",@"心脏",@"主要体征"];



    NSArray *arrimg = @[@"健康记录",@"身体测量",@"生殖健康",@"数据结果",@"心脏",@"主要体征"];


    UIImageView *imgV = [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, 30, 30)];


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


    [celladdSubview:imgV];


    UILabel*label = [[UILabelalloc]initWithFrame:CGRectMake(50,10,100,30)];


    label.text= array[indexPath.row];


    [celladdSubview:label];

    cell.detailTextLabel.text = @">";




    returncell;

}

//分区个数 (几组)

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView*)collectionView{

    return 1;

}

//每个分区有几个item (小格子的个数)

-(NSInteger)collectionView:(UICollectionView*)collectionView numberOfItemsInSection:(NSInteger)section{


    return 4;



}

-(UICollectionViewCell*)collectionView:(UICollectionView*)collectionView cellForItemAtIndexPath:(NSIndexPath*)indexPath{

    //创建重用标识符


    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseCell forIndexPath:indexPath];

    //设置格子的背景颜色

    cell.backgroundColor = [UIColor redColor];

    //初始化图片框

    UIImageView*imgV = [[UIImageViewalloc]initWithFrame:CGRectMake(0,0,180,180)];

    //添加图片

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

    //添加到网格里面

    [celladdSubview:imgV];




    returncell;


}

-(void)collectionView:(UICollectionView*)collectionView didSelectItemAtIndexPath:(NSIndexPath*)indexPath{


    if(indexPath.item==0) {

        firstViewController *p = [firstViewController new];

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

    }elseif(indexPath.item==1){


        NSLog(@"正念训练");


    }elseif(indexPath.item==2){

        NSLog(@"营养摄入");


    }else{

        secondViewController *pppp = [secondViewController new];

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

    }



}

-(void)createTableViewHeader{



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


    headerView.backgroundColor= [UIColorcolorWithRed:248/255.0green:248/255.0blue:248/255.0alpha:1];



    UISearchBar *search = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 50)];


    //search.backgroundColor = [UIColor colorWithRed:248/255.0 green:248/255.0 blue:248/255.0 alpha:1];


    search.barStyle = UISearchBarStyleDefault;





    search.placeholder=@"搜索";


    [headerViewaddSubview:search];





    //创建流水布局

    UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];

    //格子的大小

    layout.itemSize=CGSizeMake(180,180);

    //行间距

    layout.minimumLineSpacing = 15;

    //列间距

    layout.minimumInteritemSpacing = 15;

    //分区间距

    layout.sectionInset=UIEdgeInsetsMake(15,15,15,15);

    //


    //网格视图 (表格 -> 需要注册,需要创建布局)

    //1.frame

    UICollectionView *clV = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 50, self.view.frame.size.width, 405) collectionViewLayout:layout];

    //2.数据源和代理

    clV.delegate=self;

    clV.dataSource=self;


    //注册网格cell

    [clVregisterClass:[UICollectionViewCell class] forCellWithReuseIdentifier:reuseCell];


    //给数组赋值

    arrimG = @[@"1",@"2",@"3",@"4"];


    //设置视图的背景颜色

    clV.backgroundColor = [UIColor whiteColor];


    [headerViewaddSubview:clV];


    self.tbv.tableHeaderView= headerView;

}

@end

在view创建firstViewController继承UIViewController

secondViewController继承UIViewController

pTableViewCell继承UITableViewCell

在第一个界面里写上


#import "firstViewController.h"

#import "pTableViewCell.h"

@interface firstViewController ()<UITableViewDataSource,UITableViewDelegate>

@property(nonatomic,strong)UITableView *tbv;

@end

@implementationfirstViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.


    self.view.backgroundColor = [UIColor redColor];


    // 默认为关闭大标题模式

    self.navigationController.navigationBar.prefersLargeTitles = YES;


    self.navigationItem.title = @"健康记录";




    [self.viewaddSubview:self.tbv];


}

-(UITableView *)tbv{

    if(!_tbv) {

        _tbv = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStyleGrouped];

    }


    _tbv.delegate=self;

    _tbv.dataSource = self;


    [_tbv registerNib:[UINib nibWithNibName:@"pTableViewCell" bundle:nil] forCellReuseIdentifier:@"cell2"];


    return _tbv;


}

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{

    return 2;

}

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

    if(section ==0) {

        return1;

    }else{

        return3;

    }

}

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



    if(indexPath.section==0) {

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];


        if(!cell) {

            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];

        }

        _tbv.rowHeight=200;


        UIImageView *imgV = [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, self.view.frame.size.width - 20, 180)];


        imgV.image= [UIImageimageNamed:@"11"];


        [celladdSubview:imgV];

        returncell;

    }else{

        _tbv.rowHeight=150;

        pTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell2"];

        returncell;

    }


}

-(NSString*)tableView:(UITableView*)tableView titleForHeaderInSection:(NSInteger)section{

    if(section ==0) {


        return @"少做多动,适度锻炼";

    }

    else{

        return@"今天";

    }

}

-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{

    if(indexPath.section==0) {

        return180;

    }

    else{

        return80;

    }

}

@end

在第二个界面

#import "secondViewController.h"

#import "pTableViewCell.h"

@interface secondViewController ()<UITableViewDataSource,UITableViewDelegate>

@property(nonatomic , strong) UITableView *tbv;

@end

@implementationsecondViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.


    self.view.backgroundColor = [UIColor redColor];


    // 默认为关闭大标题模式

    self.navigationController.navigationBar.prefersLargeTitles = YES;


    self.navigationItem.title = @"健康记录";




    [self.viewaddSubview:self.tbv];


}

-(UITableView *)tbv{

    if(!_tbv) {

        _tbv = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStyleGrouped];

    }


    _tbv.delegate=self;

    _tbv.dataSource = self;


    [_tbv registerNib:[UINib nibWithNibName:@"pTableViewCell" bundle:nil] forCellReuseIdentifier:@"cell2"];


    return _tbv;


}

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{

    return 2;

}

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

    if(section ==0) {

        return1;

    }else{

        return3;

    }

}

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



    if(indexPath.section==0) {

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];


        if(!cell) {

            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];

        }

        _tbv.rowHeight=200;


        UIImageView *imgV = [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, self.view.frame.size.width - 20, 180)];


        imgV.image= [UIImageimageNamed:@"22"];


        [celladdSubview:imgV];

        returncell;

    }else{

        pTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell2"];

        returncell;

    }


}

-(NSString*)tableView:(UITableView*)tableView titleForHeaderInSection:(NSInteger)section{

    if(section ==0) {

        return @"到点就寝,按时起床,持之以恒";

    }

    else{

        return@"更早";

    }

}

-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{

    if(indexPath.section==0) {

        return180;

    }

    else{

        return80;

    }

}

@end

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

推荐阅读更多精彩内容

  • 生活,越妥协,便离幸福越远;越退让,便离自己越远;越迷茫,便离目标越远。 奔波在俗世的潮流中,在声色...
    在路上_9baa阅读 382评论 0 0
  • 爱有的时候很自私,它总是将两个人相互连接起来。这中间却不允许其他的人去涉足。 今生的爱也同样自私,在这一生,只允许...
    暖心爱人254阅读 171评论 2 3
  • 曹少钦逢君之恶,邬名世贬官琼州 一日,皇帝听到有人报告陕西大旱的事。皇帝很生气,就向曹少钦询问这件事。曹...
    朱之豚阅读 274评论 0 1