iOS UITableView 1

1     ==================================创建

#pragma -mark 创建tableView

- (void)createTableView{

     = [[UITableView alloc]initWithFrame:self.bounds];

     [self addSubview:];

    .backgroundColor = [UIColor clearColor]; 

    .delegate = self;

    .dataSource = self;

     .rowHeight = 120;

}

2   =======================代理

2.1==============通用方法

#pragma -mark  cell number

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


    return
10;

}

#pragma -mark  cell

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

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

    if(cell ==
nil){

        cell = [[
UITableViewCell alloc]init];
    }

    cell.
backgroundColor = [UIColor clearColor];

    return  cell;

}


2.2=================================XIB

#pragma -mark  cell number       

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

   
NSString *month = _moviecomingsAllkeysArray[section];

   
NSArray *movies = _moviecomingsModelDic[month];

    return movies.
count;

}

#pragma -mark  cell                    ======== 注意两个cell 

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

   
WillPlayTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"willplay_cell"];

    if(cell ==
nil){

        cell = [[[
NSBundle mainBundle]loadNibNamed:@"WillPlayTableViewCell" owner:nil options:nil]lastObject];

        cell.
backgroundColor = [UIColor clearColor];
    }

   
NSString *month = _moviecomingsAllkeysArray[indexPath.section];

   
NSArray *movies = _moviecomingsModelDic[month];

   
MovieComingsModel *model = movies[indexPath.row];

    cell.
model = model;

    return cell;
}


2.3================storyBoard  tbaleViewControl   控件根据tag值确定
  
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier : @"friedList_cell" forIndexPath :indexPath];



3   ======================================== 关于组的方法

#pragma -mark tableView 组的头视图     

- (
UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

   
UIImageView *_headerTableView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, WidthOfScreen, 30)];

    _headerTableView.
image = [UIImage imageNamed:@"topmenu_tab_bg.png"];

   
UILabel *_mouthLabel = [[UILabel alloc]initWithFrame:_headerTableView.bounds];

    [_headerTableView
addSubview:_mouthLabel];

    _mouthLabel.
font = [UIFont systemFontOfSize:20];

    _mouthLabel.
textColor = [UIColor whiteColor];

    //加载数据      

   
NSString *month = _moviecomingsAllkeysArray[section];

   
NSLog(@"%@",month);

    _mouthLabel.
text = [NSString stringWithFormat:@"  %@",month];

//    _mouthLabel.text = month;     == 不一定是String型的

    return _headerTableView;
}



#pragma -mark 设置组头的高       

- (
CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return
30;
}

#pragma -mark  设置组数           

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

    return
_moviecomingsAllkeysArray.count;

}


5   ==========================头视图

_willPalyTableView.tableHeaderView = _headView;




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值