iOS开发UI篇—UITableview控件简单介绍

一、基本介绍

在众多移动应?用中,能看到各式各样的表格数据 。

在iOS中,要实现表格数据展示,最常用的做法就是使用UITableView,UITableView继承自UIScrollView,因此支持垂直滚动,?且性能极佳 。

UITableview有分组和不分组两种样式,可以在storyboard或者是用代码设置。

二、数据展示

UITableView需要?一个数据源(dataSource)来显示数据
UITableView会向数据源查询一共有多少行数据以及每?行显示什么数据等

没有设置数据源的UITableView只是个空壳

凡是遵守UITableViewDataSource协议的OC对象,都可以是UITableView的数据源

  展示数据的过程:

    (1)调用数据源的下面?法得知?一共有多少组数据
      - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;

    (2)调用数据源的下面?法得知每一组有多少行数据
      - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

    (3)调?数据源的下??法得知每??显示什么内容

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

三、代码示例

  (1)能基本展示的“垃圾”代码

  1 #import "NJViewController.h"
  2
  3 @interface NJViewController ()<UITableViewDataSource>
  4 @property (weak, nonatomic) IBOutlet UITableView *tableView;
  5
  6 @end
  7
  8 @implementation NJViewController
  9
 10 - (void)viewDidLoad
 11 {
 12     [super viewDidLoad];
 13     // 设置tableView的数据源
 14     self.tableView.dataSource = self;
 15
 16 }
 17
 18 #pragma mark - UITableViewDataSource
 19 /**
 20  *  1.告诉tableview一共有多少组
 21  */
 22 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 23 {
 24     NSLog(@"numberOfSectionsInTableView");
 25     return 2;
 26 }
 27 /**
 28  *  2.第section组有多少行
 29  */
 30 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 31 {
 32     NSLog(@"numberOfRowsInSection %d", section);
 33     if (0 == section) {
 34         // 第0组有多少行
 35         return 2;
 36     }else
 37     {
 38         // 第1组有多少行
 39         return 3;
 40     }
 41 }
 42 /**
 43  *  3.告知系统每一行显示什么内容
 44  */
 45 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 46 {
 47     NSLog(@"cellForRowAtIndexPath %d %d", indexPath.section, indexPath.row);
 48 //    indexPath.section; // 第几组
 49 //    indexPath.row; // 第几行
 50     // 1.创建cell
 51     UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
 52
 53     // 2.设置数据
 54     // cell.textLabel.text = @"汽车";
 55     // 判断是第几组的第几行
 56     if (0 == indexPath.section) { // 第0组
 57         if (0 == indexPath.row) // 第0组第0行
 58         {
 59             cell.textLabel.text = @"奥迪";
 60         }else if (1 == indexPath.row) // 第0组第1行
 61         {
 62             cell.textLabel.text = @"宝马";
 63         }
 64
 65     }else if (1 == indexPath.section) // 第1组
 66     {
 67         if (0 == indexPath.row) { // 第0组第0行
 68             cell.textLabel.text = @"本田";
 69         }else if (1 == indexPath.row) // 第0组第1行
 70         {
 71             cell.textLabel.text = @"丰田";
 72         }else if (2 == indexPath.row) // 第0组第2行
 73         {
 74             cell.textLabel.text = @"马自达";
 75         }
 76     }
 77
 78     // 3.返回要显示的控件
 79     return cell;
 80
 81 }
 82 /**
 83  *  第section组头部显示什么标题
 84  *
 85  */
 86 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
 87 {
 88     // return @"标题";
 89     if (0 == section) {
 90         return @"德系品牌";
 91     }else
 92     {
 93         return @"日韩品牌";
 94     }
 95 }
 96 /**
 97  *  第section组底部显示什么标题
 98  *
 99  */
100 - (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
101 {
102     if (0 == section) {
103         return @"高端大气上档次";
104     }else
105     {
106         return @"还不错";
107     }
108 }
109 @end

实现效果:

(2)让代码的数据独立

新建一个模型

 1 #import <Foundation/Foundation.h>
 2
 3 @interface NJCarGroup : NSObject
 4 /**
 5  *  标题
 6  */
 7 @property (nonatomic, copy) NSString *title;
 8 /**
 9  *  描述
10  */
11 @property (nonatomic, copy) NSString *desc;
12 /**
13  *  当前组所有行的数据
14  */
15 @property (nonatomic, strong) NSArray *cars;
16
17 @end
  1 #import "NJViewController.h"
  2 #import "NJCarGroup.h"
  3
  4 @interface NJViewController ()<UITableViewDataSource>
  5 @property (weak, nonatomic) IBOutlet UITableView *tableView;
  6 /**
  7  *  保存所有组的数据(其中每一元素都是一个模型对象)
  8  */
  9 @property (nonatomic, strong) NSArray *carGroups;
 10 @end
 11
 12 @implementation NJViewController
 13
 14 #pragma mark - 懒加载
 15 - (NSArray *)carGroups
 16 {
 17     if (_carGroups == nil) {
 18         // 1.创建模型
 19         NJCarGroup *cg1 = [[NJCarGroup alloc] init];
 20         cg1.title = @"德系品牌";
 21         cg1.desc = @"高端大气上档次";
 22         cg1.cars = @[@"奥迪", @"宝马"];
 23
 24         NJCarGroup *cg2 = [[NJCarGroup alloc] init];
 25         cg2.title = @"日韩品牌";
 26         cg2.desc = @"还不错";
 27         cg2.cars = @[@"本田", @"丰田", @"小田田"];
 28
 29         NJCarGroup *cg3 = [[NJCarGroup alloc] init];
 30         cg3.title = @"欧美品牌";
 31         cg3.desc = @"价格昂贵";
 32         cg3.cars = @[@"劳斯莱斯", @"布加迪", @"小米"];
 33         // 2.将模型添加到数组中
 34         _carGroups = @[cg1, cg2, cg3];
 35     }
 36     // 3.返回数组
 37     return _carGroups;
 38 }
 39
 40 - (void)viewDidLoad
 41 {
 42     [super viewDidLoad];
 43     // 设置tableView的数据源
 44     self.tableView.dataSource = self;
 45
 46 }
 47
 48 #pragma mark - UITableViewDataSource
 49 /**
 50  *  1.告诉tableview一共有多少组
 51  */
 52 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 53 {
 54     NSLog(@"numberOfSectionsInTableView");
 55     return self.carGroups.count;
 56 }
 57 /**
 58  *  2.第section组有多少行
 59  */
 60 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 61 {
 62     NSLog(@"numberOfRowsInSection %d", section);
 63     // 1.取出对应的组模型
 64     NJCarGroup *g = self.carGroups[section];
 65     // 2.返回对应组的行数
 66     return g.cars.count;
 67 }
 68 /**
 69  *  3.告知系统每一行显示什么内容
 70  */
 71 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 72 {
 73     NSLog(@"cellForRowAtIndexPath %d %d", indexPath.section, indexPath.row);
 74 //    indexPath.section; // 第几组
 75 //    indexPath.row; // 第几行
 76     // 1.创建cell
 77     UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
 78
 79     // 2.设置数据
 80     // cell.textLabel.text = @"嗨喽";
 81     // 2.1取出对应组的模型
 82     NJCarGroup *g = self.carGroups[indexPath.section];
 83     // 2.2取出对应行的数据
 84     NSString *name = g.cars[indexPath.row];
 85     // 2.3设置cell要显示的数据
 86     cell.textLabel.text = name;
 87     // 3.返回要显示的控件
 88     return cell;
 89
 90 }
 91 /**
 92  *  第section组头部显示什么标题
 93  *
 94  */
 95 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
 96 {
 97     // return @"标题";
 98     // 1.取出对应的组模型
 99     NJCarGroup *g = self.carGroups[section];
100     return g.title;
101 }
102 /**
103  *  第section组底部显示什么标题
104  *
105  */
106 - (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
107 {
108     // return @"标题";
109     // 1.取出对应的组模型
110     NJCarGroup *g = self.carGroups[section];
111     return g.desc;
112 }
113 @end

实现效果:

提示:请自行体会把数据独立出来单独处理,作为数据模型的好处。另外,把什么抽成一个模型,一定要弄清楚。

四、补充点

contentView下默认有3个?视图

第2个是UILabel(通过UITableViewCell的textLabel和detailTextLabel属性访问)

第3个是UIImageView(通过UITableViewCell的imageView属性访问)

UITableViewCell还有?个UITableViewCellStyle属性,?于决定使用contentView的哪些子视图,以及这些子视图在contentView中的位置

时间: 2024-10-12 03:14:08

iOS开发UI篇—UITableview控件简单介绍的相关文章

iOS开发UI篇—UIPickerView控件简单介绍

iOS开发UI篇—UIPickerView控件简单介绍 一.UIPickerView 控件 1.简单介绍: 2.示例代码 TXViewController.m文件 1 // Created by 鑫 on 14-10-15. 2 3 // Copyright (c) 2014年 梁镋鑫. All rights reserved. 4 5 // 6 7 8 9 #import "TXViewController.h" 10 11 12 13 @interface TXViewContro

iOS开发UI篇—UITableview控件基本使

iOS开发UI篇—UITableview控件基本使用 一.一个简单的英雄展示程序 NJHero.h文件代码(字典转模型) #import <Foundation/Foundation.h> @interface NJHero : NSObject /** * 头像 */ @property (nonatomic, copy) NSString *icon; /** * 名称 */ @property (nonatomic, copy) NSString *name; /** * 描述 */ @

iOS开发UI篇—UITableview控件使用小结

iOS开发UI篇—UITableview控件使用小结 一.UITableview的使用步骤 UITableview的使用就只有简单的三个步骤: 1.告诉一共有多少组数据 方法:- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; 2.告诉每组一共有多少行 方法:- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSIntege

iOS开发UI篇—UITableview控件基本使用

一.一个简单的英雄展示程序 NJHero.h文件代码(字典转模型) 1 #import <Foundation/Foundation.h> 2 3 @interface NJHero : NSObject 4 /** 5 * 头像 6 */ 7 @property (nonatomic, copy) NSString *icon; 8 /** 9 * 名称 10 */ 11 @property (nonatomic, copy) NSString *name; 12 /** 13 * 描述 1

【转】 iOS开发UI篇—UIScrollView控件实现图片轮播

原文:http://www.cnblogs.com/wendingding/p/3763527.html iOS开发UI篇—UIScrollView控件实现图片轮播 一.实现效果 实现图片的自动轮播            二.实现代码 storyboard中布局 代码: 1 #import "YYViewController.h" 2 3 @interface YYViewController () <UIScrollViewDelegate> 4 @property (w

OS开发UI篇—UITableview控件使用小结

一.UITableview的使用步骤 UITableview的使用就只有简单的三个步骤: 1.告诉一共有多少组数据 方法:- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; 2.告诉每组一共有多少行 方法:- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section; 3.设置每组每行(cell) 方

iOS开发UI篇—UIScrollView控件实现图片缩放功能

一.缩放 1.简单说明: 有些时候,我们可能要对某些内容进行手势缩放,如下图所示 UIScrollView不仅能滚动显示大量内容,还能对其内容进行缩放处理.也就是说,要完成缩放功能的话,只需要将需要缩放的内容添加到UIScrollView中 2.缩放原理 当用户在UIScrollView身上使用捏合手势时,UIScrollView会给代理发送一条消息,询问代理究竟要缩放自己内部的哪一个子控件(哪一块内容) 当用户在UIScrollView身上使用捏合手势时,UIScrollView会调用代理的v

iOS开发UI篇—UIScrollView控件介绍

一.知识点简单介绍 1.UIScrollView控件是什么? (1)移动设备的屏幕?大?小是极其有限的,因此直接展?示在?用户眼前的内容也相当有限 (2)当展?示的内容较多,超出?一个屏幕时,?用户可通过滚动?手势来查看屏幕以外的内容 (3)普通的UIView不具备滚动功能,不能显?示过多的内容 (4)UIScrollView是一个能够滚动的视图控件,可以?用来展?示?大量的内容,并且可以通过滚 动查看所有的内容 (5)  举例:手机上的“设置”.其他?示例程序 2.UIScrollView的简

iOS开发UI篇—UIScrollView控件实现图片轮播

一.实现效果 实现图片的自动轮播            二.实现代码 storyboard中布局 代码: 1 #import "YYViewController.h" 2 3 @interface YYViewController () <UIScrollViewDelegate> 4 @property (weak, nonatomic) IBOutlet UIScrollView *scrollview; 5 /** 6 * 页码 7 */ 8 @property (w