iOS开发之高级视图—— UITableView(一)简单例子

    表视图继承自UIScrollView,这样的继承关系使得表视图可以实现上、下滚动。

     UITableView需要实现的两个协议如下:

       UITableViewDatasource:实例化表视图时,必须采用该方法来实现数据源的配置
       UITableViewDelegate:表视图的委托方法,一般用于处理表视图的基本样式以及捕捉选中单元格选中事件


    表视图的结构:

         表视图由头部、尾部视图,中间有一连串的单元格视图

         表视图的头部由tableHeaderView属性设置,尾部视图通过tableFooterView属性设置

        分组表格由一系列的 分区 视图组成,每一个分区又包含一个连续的单元格

       每个分区视图也由头部视图和尾部视图,通过委托方法代理

   cell的使用:

       首先定义一个标示符

      其次,检查表视图中是否存在闲置的单元格,如果有取出来,没有则重新创建

     

     例子一——简单表格

    

   ViewController.m



//
//  ViewController.m
//  UITableViewDemo
//
//  Created by Apple on 16/5/24.
//  Copyright © 2016年 Apple. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

NSArray* cityList;

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self.view setBackgroundColor:[UIColor redColor]];
    
    //创建一个数组,存储需要显示的数据
    cityList = @[@"北京",@"上海",@"天津",@"广州",@"深圳",@"杭州",@"长沙",@"郴州"];
    //创建UITableView对象
    UITableView* tableView = [[UITableView alloc] initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStyleGrouped];
    
    UILabel* headerLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 44.0)];
    [headerLabel setText:@"城市列表"];
    headerLabel.textColor = [UIColor blackColor];
    headerLabel.backgroundColor = [UIColor cyanColor];
    headerLabel.textAlignment = NSTextAlignmentCenter;
    //设置UITableView的页眉控件
    [tableView setTableHeaderView:headerLabel];
    
    UILabel* footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 30)];
    [footerLabel setText:@"以上城市房价太高"];
    //设置UITableView页脚控件
    [tableView setTableFooterView:footerLabel];
    
    //设置行cell高(默认44px)
    [tableView setRowHeight:50];
    //设置分割线颜色
    [tableView setSeparatorColor:[UIColor redColor]];
    //设置分割线风格
    
    /**
     *  UITableViewCellSeparatorStyleNone 不使用分割线
     UITableViewCellSeparatorStyleSingleLine 使用分割线
     UITableViewCellSeparatorStyleSingleLineEtched 在有组的情况使用分割线
     */
    [tableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
    // 设置UITableView的背景颜色
    [tableView setBackgroundColor:[UIColor lightGrayColor]];
    
    // 设置数据源代理,必须实现协议UITableViewDataSource中的相关方法
    tableView.delegate = self;
    tableView.dataSource = self;
    
    [self.view addSubview:tableView];
    
    
}

#pragma mark -UITableViewDataSource

// 返回表格分区数,默认返回1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
// 返回每组头标题名称
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return @"分区开始";
}

//  返回每组尾部说明
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    return @"分区结束";
}

// @required
// 提供tableView中的分区中的数据的数量
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    
    return [cityList count];
}

// 为表格行定义一个静态字符串作为可重用标识符,在UITableView的cell缓存池当中所有的cell的标示符都是刚定义的cellID,因为重用时无所谓获取哪一个cell,只要是cell就可以
static NSString* cellID = @"cellID";

// @required
// 返回每行的单元格,提供 tableView 中显示的数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    // 根据cellID从可重用表格行的队列中取出可重用的一个表格行UITableViewCell对象
    UITableViewCell* tableViewCell = [tableView dequeueReusableCellWithIdentifier:cellID];
    // 如果取出的表格行为nil
    if (tableViewCell == nil) {
        //创建一个UITableViewCell对象,并绑定到cellID
        tableViewCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellID];
    }
    // 将单元格的边框设置为圆角
    tableViewCell.layer.cornerRadius = 12;
    tableViewCell.layer.masksToBounds = YES;
    //UITableView声明了一个NSIndexPath的类别,主要用 来标识当前cell的在tableView中的位置,该类别有section和row两个属性,section标识当前cell处于第几个section中,row代表在该section中的第几行。
    // 从IndexPath参数获取当前行的行号
    NSUInteger rowNo = indexPath.row;
    // 取出cityList中索引为rowNo的元素作为UITableViewCell的文本标题
    tableViewCell.textLabel.text = [cityList objectAtIndex:rowNo];
    // 设置UITableViewCell的详细内容
    tableViewCell.detailTextLabel.text = [NSString stringWithFormat:@"市区"];
    // 设置UITableViewCell的左边的图标
    tableViewCell.imageView.image = [UIImage imageNamed:@"1.jpg"];
    // 设置UITableViewCell附加按钮的样式
    tableViewCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    //返回设置好数据的cell给UITableView对象
    return tableViewCell;
}


@end

  效果图如下:

  

  


    例子二————分组展现



     ViewController.m

  

//
//  ViewController.m
//  UITableViewSectionsApp
//
//  Created by Apple on 16/5/24.
//  Copyright © 2016年 Apple. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

NSArray* Heroes;
NSArray* Liqings;
NSArray* Kazikes;
NSArray* Rivens;

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    // 分区数据
    Heroes = @[@"李青",@"卡兹克",@"瑞文"];
    
    Liqings = @[@"李青1",@"李青2"];
    
    Kazikes = @[@"卡兹克"];
    
    Rivens = @[@"瑞文1",@"瑞文2",@"瑞文3"];
    
    // 创建UITableView
    UITableView* tableView =  [[UITableView alloc]initWithFrame:[UIScreen mainScreen].applicationFrame style:UITableViewStyleGrouped];
    
    UILabel* headerLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 320, 30)];
    [headerLabel setText:@"三大英雄"];
    //设置UITable头信息
    [tableView setTableHeaderView:headerLabel];
    
    UILabel* footerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 30)];
    [footerLabel setText:@"等你来战"];
    //设置UITable尾部信息
    [tableView setTableFooterView:footerLabel];
    
    [tableView setBackgroundColor:[UIColor cyanColor]];
    
    // 添加UITableView
    [self.view addSubview:tableView];
    
    // 设置数据源代理,必须实现协议UITableViewDataSource中的相关方法
    tableView.dataSource = self;
    
    
}

//返回 tableView上的分区数量,本例为3
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return [Heroes count];
}

// 返回分区的title(分区是从 0 开始的)
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    // 根据分区的获取对应的名称
    return Heroes[section];
}

// 返回tableView中的分区中的数据的数量
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    // 根据分区,获取分区中对应要显示的数据长度
    if(section == 0){
        return [Liqings count];
    }else if(section == 1){
        return [Kazikes count];
    }else{
        return [Rivens count];
    }
}

// 可重用标识符
static NSString* cellID = @"cellID";

// 将提供 tableView 中显示的数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    // 根据cellID获取可重用的UITableViewCell对象
    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if(!cell){
        //创建一个UITableViewCell对象,并绑定到cellID
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
    }
    // 根据分区设置UITableViewCell显示的数据
    if(indexPath.section == 0){
        cell.textLabel.text = Liqings[indexPath.row];
        // 设置UITableViewCell的左边的图标
        cell.imageView.image = [UIImage imageNamed:@"l1.jpg"];
        
    }else if(indexPath.section == 1){
        cell.textLabel.text = Kazikes[indexPath.row];
        cell.imageView.image = [UIImage imageNamed:@"k1.jpg"];
        
    }else{
        cell.textLabel.text = Rivens[indexPath.row];
        cell.imageView.image = [UIImage imageNamed:@"r1.jpg"];
    }
    // 设置列的按钮类型
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    // 返回设置好数据的cell给UITableView对象
    return cell;
}



@end

    效果图如下:

 

     

  • 2
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
iOS中,一个视图只能有一个UITableView。但是可以通过创建多个UITableView来实现一个视图中显示多个表格的效果。以下是一个示例代码: 首先,你需要在视图控制器中添加多个UITableView的实例变量: ```swift class YourViewController: UIViewController { var tableView1: UITableView! var tableView2: UITableView! // ... } ``` 然后,在视图加载完成后,你可以创建和配置这些UITableView的实例: ```swift override func viewDidLoad() { super.viewDidLoad() // 创建第一个UITableView tableView1 = UITableView(frame: CGRect(x: 0, y: 0, width: view.frame.width, height: view.frame.height/2)) tableView1.dataSource = self tableView1.delegate = self view.addSubview(tableView1) // 创建第二个UITableView tableView2 = UITableView(frame: CGRect(x: 0, y: view.frame.height/2, width: view.frame.width, height: view.frame.height/2)) tableView2.dataSource = self tableView2.delegate = self view.addSubview(tableView2) // ... } ``` 接下来,你需要实现UITableViewDataSource和UITableViewDelegate协议的相关方法来提供表格的数据和处理交互事件。例如: ```swift extension YourViewController: UITableViewDataSource { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { if tableView == tableView1 { // 返回第一个UITableView的行数 return 10 } else if tableView == tableView2 { // 返回第二个UITableView的行数 return 5 } return 0 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) if tableView == tableView1 { // 配置第一个UITableView的单元格 cell.textLabel?.text = "Table View 1 - Row \(indexPath.row)" } else if tableView == tableView2 { // 配置第二个UITableView的单元格 cell.textLabel?.text = "Table View 2 - Row \(indexPath.row)" } return cell } } extension YourViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { if tableView == tableView1 { // 处理第一个UITableView的行选中事件 print("Table View 1 - Row \(indexPath.row) selected") } else if tableView == tableView2 { // 处理第二个UITableView的行选中事件 print("Table View 2 - Row \(indexPath.row) selected") } } } ``` 这样,你就可以在同一个视图中使用多个UITableView了。记得在视图控制器中遵循UITableViewDataSource和UITableViewDelegate协议,并在视图加载完成后设置数据源和代理。 希望这能帮到你!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值