1、UITableView 表格视图

服从数据源 - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {}返回的视图推不上去

但是tableHeaderView 可以推上去

UITableView * tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];

//普通

UITableViewStylePlain,

//分组

UITableViewStyleGrouped

//设置数据源

tableView.dataSource = self;

//设置代理

tableView.delegate = self;

//得到所有选中的行数

[self.tableView indexPathsForSelectedRows];

//分区头的高度 默认20

tableView.sectionHeaderHeight = 30;

//分区尾的高度 默认20

tableView.sectionFooterHeight = 30;

//行高,默认行高是44。

tableView.rowHeight = 100;

tableView.backgroundColor = [UIColor grayColor];

//设置背景View

UIImageView * imageView = [[UIImageView alloc] initWithFrame:tableView.bounds];

imageView.image = [UIImage imageNamed:@"baby.jpg"];

tableView.backgroundView = imageView;

//取消选中某一行

[tableView deselectRowAtIndexPath:indexPath animated:YES];

UITableViewCellSeparatorStyleNone 没有线                 UITableViewCellSeparatorStyleSingleLine  单行线      UITableViewCellSeparatorStyleSingleLineEtched  被石化的单行线

//线的风格

_tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;

//线的内边距

_tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);

//索引区域的背景

_tableView.sectionIndexBackgroundColor = [UIColor whiteColor];

//设置索引文字的颜色

_tableView.sectionIndexColor = [UIColor blueColor];

//cell行数小于多少是展示索引

_tableView.sectionIndexMinimumDisplayRowCount = 100;

//选择索引时的背景颜色

_tableView.sectionIndexTrackingBackgroundColor = [UIColor clearColor];

//显示索引的题目

- (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {

return [self.dataList valueForKey:@"title”];

 
2、UITableViewCell

sep//设置单元格文本

cell.textLabel.text = wechat.title;

//设置单元格 左边视图

cell.imageView.image = [UIImage imageNamed:wechat.icon];

//选中风格

UITableViewCellSelectionStyleNone, //没有点中效果

UITableViewCellSelectionStyleBlue, ==

UITableViewCellSelectionStyleGray, ==

UITableViewCellSelectionStyleDefault

cell.selectionStyle = UITableViewCellSelectionStyleDefault;

//设置cell右端图标

UITableViewCellAccessoryDisclosureIndicator 尖角号

UITableViewCellAccessoryDetailDisclosureButton 圆圈感叹号加尖角号

UITableViewCellAccessoryCheckmark 对号

UITableViewCellAccessoryDetailButton 圆圈感叹号

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

//UITableViewCellStyle 单元格风格

UITableViewCellStyleDefault  显示图片,显示辅助图片,显示一行文字

UITableViewCellStyleValue1   显示图片,显示辅助图片,普通文字,描述文字,共占一排

UITableViewCellStyleValue2   不显示图片,显示辅助图片,普通文字,描述文字,共占一排

UITableViewCellStyleSubtitle 显示图片,显示辅助图片,普通文字,描述文字,共占两排

//设置描述文字

cell.detailTextLabel.text = industry.state;

 
//UITableViewCell 复用机制

static NSString * identifier = @"cellID";

//从复用池里找对应的cell

UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:identifier];

if (!cell) {

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cellID"];

}

3、UITableViewDataSource 数据源

//cell单元格,IndexPath索引  UITableViewCell是组成UITableView的单元格

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

//Section是几组,Rows多少行(每组内有多少元素),默认情况下只有一个Section.分组的index为0(每一分组多少行)

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

//返回分区顶部标题

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

//返回分区尾部标题

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

//返回单元格的组数

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

//返回表格视图是否可以编辑

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath ;

//返回表格视图是否可以滚动

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath ;

4、UITableViewDelegate 代理方法

//选中某一行

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {}

//设置分区头部视图

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

//设置分区尾部视图

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {}

//当滚动表格时,这个代理方法,一直调用

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

//设置行高方法,如果实现这个代理方法,rowHeight无效,这个主要用于设置可变cell高度

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

return 100;

}

//修改左侧滑动删除方法

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {

iOS - UI - UITableView的更多相关文章

  1. [IOS]IOS UI指南

    [IOS]IOS UI指南 众所周知,IOS的界面设计,越来越流行,可以说都形成了一个标准,搜集了一些资料,供自己以后学习使用! iOS Human Interface Guidelines (中文翻 ...

  2. iOS中UITableView的cell点击事件不触发didSelectRowAtIndexPath(汇总)

    iOS中UITableView的cell点击事件不触发didSelectRowAtIndexPath 首先分析有几种原因,以及相应的解决方法 1.UITableViewCell的userInterac ...

  3. IOS UI 第八篇:基本UI

    实现图片的滚动,并且自动停止在每张图片上     - (void)viewDidLoad{    [super viewDidLoad]; UIScrollView *scrollView = [[U ...

  4. 国外IOS UI指南

    国外IOS UI指南 众所周知,IOS的界面设计,越来越流行,可以说都形成了一个标准,搜集了一些资料,供自己以后学习使用! iOS Human Interface Guidelines (中文翻译) ...

  5. iOS UI的几种模式

    iOS UI的几种模式: 1.平凡模式(原生控件组合): 2.新闻模式: 3.播放器模式: 4.微博模式:

  6. 通过实现一个TableView来理解iOS UI编程

    推荐一篇神作: 通过实现一个TableView来理解iOS UI编程 http://blog.jobbole.com/61101/

  7. iOS programming UITableView and UITableViewController

    iOS programming  UITableView and UITableViewController A UITableView displays a single column of dat ...

  8. IOS之UI -- UITableView -- 1 -- 相关初识

    *:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } ...

  9. IOS UI 第九篇: UITABLEVIEW

    学英语.所以用英文来记录笔记.   Define the dataSource:   @implementation ViewController{    NSMutableArray *dataSo ...

随机推荐

  1. CCS5 编译器手动设置dsp支持可变参数宏等问题

    IDE:CSS5.4,compiler不支持可变参数宏.需要手动设置编译器相关选项: Language Option->Language Mode —>no strict ANSI. 1. ...

  2. HDU 5884 Sort (二分)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5884 nn个有序序列的归并排序.每次可以选择不超过kk个序列进行合并,合并代价为这些序列的长度和.总的 ...

  3. java dbcp连接池的使用

    package com.jb.jubmis.comm; import java.sql.Connection;import java.sql.ResultSet;import java.sql.SQL ...

  4. JOIN 相关内容

    1.left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录  2.right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录 3.inner join ...

  5. as3.0:文字 效果

    //文字描边效果var tf1 = _root.createTextField("tf1", _root.getNextHighestDepth(), 10, 10, 0, 0); ...

  6. position:sticky用法

    用户的屏幕越来越大,而页面太宽的话会不宜阅读,所以绝大部分网站的主体宽度和之前相比没有太大的变化,于是浏览器中就有越来越多的空白区域,所以你可能注意到很多网站开始在滚动的时候让一部分内容保持可见,比如 ...

  7. Js制作点击输入框时默认文字消失的效果

    (从已经死了一次又一次终于挂掉的百度空间人工抢救出来的,发表日期 2014-02-17) 为了提高用户体验和易用度,一些设计师会对网页中用户经常用的东西进行优化,比如输入框.一般的输入框是怎样优化的呢 ...

  8. CHM文件无法查看内容解决办法

    http://www.cnblogs.com/skey_chen/archive/2011/05/24/2055538.html 从网上下载了一份CHM格式的文档,打开时左侧菜单出来了,但右边显示如下 ...

  9. vs2010代码注释自动生成api文档

    最近做了一些接口,提供其他人调用,要写个api文档,可是我想代码注释已经写了说明,能不能直接把代码注释生成api?于是找到以下方法 环境:vs2010 先下载安装Sandcastle 和Sandcas ...

  10. 如何自学Java

    转自:http://www.360doc.com/content/12/0624/19/5856897_220191533.shtml   JAVA自学之路 JAVA自学之路 一:学会选择 为了就业, ...