博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITableView 的用法
阅读量:5099 次
发布时间:2019-06-13

本文共 2362 字,大约阅读时间需要 7 分钟。

   UITableView是ios开发过程中极其常用的控件,主要是以列表的形式来展示数据,其杂程度相对于其他的类,可以说是最复杂的一个。

   UITableView是app开发中常用到的UI控件,功能很强大,多用于数据的显示。

下面以一个简单的实例来介绍tableview的基本用法。

#import "ViewController.h"@interface ViewController ()
{ UITableView *tableview;}@end@implementation ViewController- (void)viewDidLoad {//1、 创建,tableview有两种风格,UITableViewStylePlain和UITableViewStyleGrouped,其本质上没多大区别,主要是界面风格tableview=[[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain]; // tableview=[[UITableView alloc]initWithFrame:CGRectMake(0, 0, 400, 300) style:UITableViewStyleGrouped]; UIImageView *image=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@""]];//设置背景,可以是任何view或其子类的对象 tableview.backgroundView=image;//给tableView添加背景,可以不设置背景视图的frameUIView *header = [[UIView alloc] initWithFrame:CGRectMake(10, 10, 0, 20)]; header.backgroundColor = [UIColor grayColor]; tableview.tableHeaderView = header;//tableview顶部视图,其frame只有高有效 tableview.rowHeight=20;//设置行高tableview.separatorStyle = UITableViewCellSeparatorStyleSingleLine;//分割线样式 // tableview.separatorColor = [UIColor whiteColor];//分割线的颜色 tableview.delegate=self;//设置代理 tableview.dataSource=self;//设置数据源[self.view addSubview:tableview];}-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return 1;//table的组数,默认是一组}-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ // if (section == 0) { // return 1;//第0组1行 // }else if (section == 1){ // return 10;//第一组10行 // } return 4;//设置每组的行数}//设置每行对应的cell-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//indexPath包含了第几组:indexPath.section 和第几行:indexPath.row static NSString *identifier = @"Cell";//重用机制标识 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];//根据重用标识,到重用池找对应的cell if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];//创建一个cell,设置其样式以及其标识 } // cell.backgroundColor = [UIColor clearColor]; cell.textLabel.text = [NSString stringWithFormat:@"第%zi行,第%zi组",indexPath.row,indexPath.section];//设置cell的文本信息 cell.imageView.image = [UIImage imageNamed:@"58"]; return cell;//将设置好的cell返回}

运行结果如下:

 

转载于:https://www.cnblogs.com/wyhwyh2114/p/4971037.html

你可能感兴趣的文章
查看iOS沙盒(SanBox)文件
查看>>
数据结构与算法
查看>>
顺时针打印矩阵
查看>>
[转载]Chrome 与 Chrome OS 各版本下载集合
查看>>
面试微软前必须要读的十本书
查看>>
hadoop的安装和配置
查看>>
spinnaker
查看>>
hdu 1599 find the mincost route(无向图的最小环)
查看>>
转载:解读CSS布局之-水平垂直居中(2)
查看>>
第十八章 30限制数组越界
查看>>
浅谈unique列上插入重复值的MySQL解决方案
查看>>
hdu 4859(思路题)
查看>>
11.2.0.4 sql*loader/oci direct load导致kpodplck wait before retrying ORA-54
查看>>
sql server 2008空间释放
查看>>
团队-科学计算器-最终总结
查看>>
树的遍历 TJUACM 3988 Password
查看>>
UVA 725 - Division
查看>>
bzoj1798: [Ahoi2009]Seq 维护序列seq(线段树)
查看>>
窗体中拖动panel,并且不会拖动至窗体外部程序实现方法。
查看>>
vb中从域名得到IP及从IP得到域名
查看>>