UITableView:特殊的滚动视图,横向固定,可以在纵向上滚动,自动计算contentSize

创建tableView,初始化时指定样式,默认是plain

UITableView *_tableView=[[UITableView alloc] initWithFrame:CGRectMake(0, 20, 375, 600) style:UITableViewStylePlain];

与数据源相关的方法都在dataSource的协议方法中

_tableView.dataSource=self;

与ui相关的方法都在delegate的协议方法中

_tableView.delegate=self;

设置每组的数据行数

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

显示每行数据时都会调用此方法,设置每行数据的显示样式(单元格内容样式),显示单元格,采用了可重用机制,当向上拖动tableView显示新的数据时,(原来的单元格不可见,将其加入到可重用队列中,)每次显示单元格信息时先从可重用队列中取出可重用的单元格,如果没有再自己创建

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

设置是否自动调整视图位置

self.automaticallyAdjustsScrollViewInsets=NO;

根据标识符在可重用队列中取出单元格

UITableViewCell* cell=[tableView dequeueReusableCellWithIdentifier:identifier];

设置单元格右侧的箭头样式

cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;

UITableViewCellAccessoryDisclosureIndicator;//右箭头

UITableViewCellAccessoryDetailButton;//问号

UITableViewCellAccessoryDetailDisclosureButton;//问号加右箭头

UITableViewCellAccessoryCheckmark;//对号

UITableViewCellAccessoryNone;//空

图片,一般在左侧显示

cell.imageView.image=[UIImage imageNamed:@"0.png"];

详细信息

cell.detailTextLabel.text=@"detail";

设置每行的行高:默认是44

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

当选择某行数据时调用此协议方法

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

当取消选择某行数据时,

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;

每个UIViewController都有一个editButtonItem属性,当向它发送editButtonItem消息时会自动创建一个名为edit的UIBarButtonItem对象,自动设定目标-action。自动调用setEditing:animated:方法

self.navigationItem.leftBarButtonItem=self.editButtonItem;

单击导航栏上的edit项时执行此协议方法

-(void)setEditing:(BOOL)editing animated:(BOOL)animated;

设置表视图与edit一样是否处于编辑状态

[_tableView setEditing:editing animated:animated];

section是表视图中每组的编号,从0开始,设置每行的数据行数

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

设置tableView的分组数

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

//设置每组的标题,section是组的编号

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

//对tableView编辑(删除、插入)的操作

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;

1、删除数据源中的数据(删除第indexPath.section组中第indexPath.row行的数据

[_dataArray[indexPath.section] removeObjectAtIndex:indexPath.row];

2、刷新表视图,第1个参数是删除的行的indexPath组数,第2个参数是动画效果样式

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];

刷新所有的数据

[tableView reloadData];

tableView的编辑状态有UITableViewCellEditingStyleDelete, UITableViewCellEditingStyleInsert, UITableViewCellEditingStyleNone

UI控件之UITableView的基本属性的更多相关文章

  1. UI控件之UITableView的协议方法

    <UITableViewDataSource,UITableViewDelegate> //设置表视图的编辑状态 -(void)setEditing:(BOOL)editing anima ...

  2. AppleWatch___学习笔记(二)UI布局和UI控件

    1.UI布局 直接开发,你会发现Apple Watch并不支持AutoLayout,WatchKit里有个类叫做WKInterfaceGroup,乍一看像是UIView,但是这货其实是用来布局的.从 ...

  3. ios 中的UI控件学习总结(1)

    UIKit框架提供了非常多功能强大又易用的UI控件 下面列举一些在开发中可能用得上的UI控件 UIButton 按钮 UILabel 文本标签 UITextField 文本输入框 UIImageVie ...

  4. 面试题汇总--数据储存/应用程序/UI控件/客户端的安全性与框架处理。。。

    一 数据储存  1.如果后期需要增加数据库中的字段怎么实现,如果不使用 CoreData 呢?编写 SQL 语句来操作原来表中的字段1)增加表字段ALTER TABLE 表名 ADD COLUMN 字 ...

  5. UI控件概述

    常见UI控件 UIKit框架提供了非常多功能强大又易用的UI控件,以便于开发者打造出各式各样的App 以下列举一些在开发中常见的UI控件(稍后补上图片示例) 1.UILabel– 文本标签:作用是显示 ...

  6. iOS-UI控件之UITableView(一)

    UITableView 介绍 UITableView 是用来用列表的形式显示数据的UI控件 举例 QQ好友列表 通讯录 iPhone设置列表 tableView 常见属性 // 设置每一行cell的高 ...

  7. 常用的UI控件

    关于本文:作为一名iOS软件工程师,熟练规范的使用常用的UI控件是必备的基础技能. 指示器(UIActivityIndicatorView)----转动的等待小菊花 提醒对话框(UIAlertView ...

  8. ANDROID L——Material Design详解(UI控件)

    转载请注明本文出自大苞米的博客(http://blog.csdn.net/a396901990),谢谢支持! Android L: Google已经确认Android L就是Android Lolli ...

  9. WinForm/Silverlight多线程编程中如何更新UI控件的值

    单线程的winfom程序中,设置一个控件的值是很easy的事情,直接 this.TextBox1.value = "Hello World!";就搞定了,但是如果在一个新线程中这么 ...

随机推荐

  1. C++函数指针和类成员函数指针

    一.函数指针——基本形式 char Fun(int n) { return char(n); } //char(*pFun)(int); void main() { char(*pFun)(int); ...

  2. MFC 点击按钮,弹出另一个对话框(模态及非模态对话框)

    1. 模态对话框 资源视图->Dialog->右键->添加资源->新建->对话框->右键->添加类. 例如:在A_dialog中点击按钮弹出B_dialog  ...

  3. 2016ATF阿里巴巴技术论坛

    转自:http://blog.csdn.net/mini_monster/article/details/51175879 “爱迪生的贡献不在于让灯泡亮的更久一些,爱迪生最大的贡献是在全世界第一个想到 ...

  4. 【实用】如何在windows下快速截图?

    如何在windows下快速截图? 快速截图是很多人的需求.截图的工具和方案也很多,但是,这里给出一个通用的,被大众认为最高效的一个解决方案. 我们都知道键盘上有一个"prt sc" ...

  5. mysql 1005 错误

    建立外键的时候两个 表的相对应的 类型不一致!

  6. 我的第二个java程序 循环

    public class Test {//类 public Test (int num){//构造方法,和类同名,无返回值,接收传参并定义传参的类型,大小写敏感 int x = 10;//局部变量,定 ...

  7. linux tableau server 连接 presto

    记录一下这个弄个好久的难题 linux tableau server 版本  tableau-server-2018-2-0.x86_64.rpm 安装过程 我参照了这儿仁兄   http://ju. ...

  8. VBA 字符串操作

    Trim(string) 去掉string左右两端空白 Ltrim(string) 去掉string左端空白 Rtrim(string) 去掉string右端空白 Len(string) 计算stri ...

  9. day11函数的进阶动态参数,命名空间,作用域,第一类对象

    一.习题收藏 5.写函数,计算传入字符串中[数字].[字母].[空格] 以及 [其他]的个数,并返回结果. # def func4(s): # dic = { # 'num':0,'alpha':0, ...

  10. haml入门

    1.什么是Haml Haml是HTML abstraction markup language,遵循的原则是标记应该是美的.Haml能够加速和简化模版,长处是简洁.可读.高效. 2.erbm模板和ha ...