参考:IOS7.0 programming cookbook.

http://www.cnblogs.com/kenshincui/p/3931948.html

http://blog.csdn.net/duxinfeng2010/article/details/7725897

 
 
说明:TableView在sb里面绑定。cell的定义在xib里面。实现了Cell高度自适应。可删除。含有UIRefreshControl控件。长按。drag到最top or bottom。
 
 

MYTableViewCell.h

#import <UIKit/UIKit.h>

@interface MYTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *imgViewLeft;//xib中绑定
@property (weak, nonatomic) IBOutlet UIImageView *imgViewRight;//xib中绑定
@property (weak, nonatomic) IBOutlet UIView *txtView;//xib中绑定 @end

MYTableViewCell.m

#import "MYTableViewCell.h"

@implementation MYTableViewCell

- (void)awakeFromNib {
// Initialization code
} - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated]; // Configure the view for the selected state
} @end

  MyTableViewCell.xib

ViewController.h

/* 本例中,tableview是在sb中建立,cell是在xib中建立,主要展现常用的代理函数。
PS个人更喜欢纯代码*/ #import <UIKit/UIKit.h> @interface ViewController : UIViewController<UITableViewDelegate,UITableViewDataSource,UIScrollViewAccessibilityDelegate> @end

 ViewController.m

/* 本例中,tableview是在sb中建立,cell是在xib中建立,主要展现常用的代理函数。
PS个人更喜欢纯代码*/ #import "ViewController.h"
#import "MYTableViewCell.h" @interface ViewController ()
@property (weak, nonatomic) IBOutlet UITableView *tbView;//从storyboard关联而来,代理也是在storyboard中关联
@property (strong,nonatomic) NSMutableArray *arr;
@property (strong,nonatomic) UIRefreshControl *refreshControl;
@end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
self.arr = [[NSMutableArray alloc]init];
[self.arr addObject:@[@"1-1",@"1-2"]];
[self.arr addObject:@[@"I am a very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very long message"]];
[self.arr addObject:@[@"3-1",@"3-2"]];
[self.arr addObject:@[@"4-1",@"4-2",@"4-3",@"4-4",@"4-5",@"4-6",@"4-7",@"4-8",@"4-9",@"4-10"]]; //refreshControl
self.refreshControl = [[UIRefreshControl alloc]initWithFrame:CGRectMake(0, 20, 10, 40)];
[self.refreshControl addTarget:self action:@selector(handleRefresh:) forControlEvents:UIControlEventValueChanged];
NSLog(@"%@",self.refreshControl); [self.tbView registerNib:[UINib nibWithNibName:NSStringFromClass([MYTableViewCell class]) bundle:nil] forCellReuseIdentifier:@"CELL_CELL"];//若用xib布局
// [self.tbView registerClass:[MYTableViewCell class] forCellReuseIdentifier:@"CELL_CELL"];//若用纯代码 //[self.tbView setEditing:YES animated:YES];//设置后,直接删除比较方便
[self.tbView addSubview:self.refreshControl];
NSLog(@"%@",self.refreshControl);
[self.tbView reloadData];
} #pragma mark - RefreshControl
- (void)handleRefresh:(UIRefreshControl *)sender
{
NSLog(@"handleRefresh");
[sender endRefreshing]; } #pragma mark - TableView
//Header
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 20.0f;
} //Header
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return nil;
} //Rows Number
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _arr.count;
} //Cell的界面
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MYTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CELL_CELL"];
/*如果开始注册了,就直接使用dequeueReusableCellXXX函数。
如果开始未注册,可以使用以下方法:
MYTableViewCell *cell = [tableVice dequeueReusableCellWithIdentifier:@"CELL_CELL"];
if(!cell){
cell = [[UITableViceCell alloc]initWithStyle:UITableViceCellStyleDefault reuseIdentifier:@"CELL_CELL"];
}
*/ //cell.contentView.backgroundColor = [UIColor redColor];//尽量吧所有控件家在contentView中,而不是cell中
//cell.selectedBackgroundView = [[UIView alloc]init];//设置选中时候的背景View
//cell.selectionStyle = UITableViewCellSelectionStyleNone;//选中时的效果,自己试
//cell.selectionStyle = UITableViewCellSelectionStyleGray;//选中时的效果,自己试
//cell.accessoryType = UITableViewCellAccessoryCheckmark;//accesory 类型 /*自适应高度的处理,感觉不断remove add效率很低,有待新解决方案*/
NSArray *arrSubView = cell.txtView.subviews; for (UIView *viewElement in arrSubView) {
[viewElement removeFromSuperview];
} NSArray *arrSub = _arr[indexPath.row];
CGFloat height = 0.0f;
for (NSString *strElement in arrSub) {
NSDictionary *attr = @{NSFontAttributeName:[UIFont systemFontOfSize:14.0f]};
//根据显示的宽度、字符串、字体三者来决定自适应高度,数字80左右两个图片的宽度综合
CGSize size = [strElement boundingRectWithSize:CGSizeMake(self.tbView.frame.size.width - 80,MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:attr context:nil].size;
height += size.height; UILabel *lbl = [[UILabel alloc]init];
[lbl.layer setBorderWidth:1.0f];
lbl.font = [UIFont systemFontOfSize:14.0f];
[lbl.layer setBorderColor:[[UIColor grayColor]CGColor]];
lbl.frame = CGRectMake(0, height - size.height, self.tbView.frame.size.width - 80, size.height); lbl.textColor = [UIColor blackColor];
lbl.text = strElement;
lbl.numberOfLines = 0;
[cell.txtView addSubview:lbl];
} return cell;
} //Cell的高度(此处添加了自适应高度)
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSArray *arrSub = _arr[indexPath.row];
CGFloat height = 0.0f;
NSDictionary *attr = @{NSFontAttributeName:[UIFont systemFontOfSize:14.0f]}; for (NSString *strElement in arrSub) {
//根据显示的宽度、字符串、字体三者来决定自适应高度,数字80左右两个图片的宽度综合
CGSize size = [strElement boundingRectWithSize:CGSizeMake(self.tbView.frame.size.width - 80,MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:attr context:nil].size;
height += size.height;
} return MAX(40, height);
} //When Click
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.tbView deselectRowAtIndexPath:indexPath animated:YES];//取消indexPath的被选择状态
} //when scroll to the top or bottom
- (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
//NSLog(@"to top or bottom");
} //在Cell出现之前响应
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
//NSLog(@"%ld-%ld",indexPath.section,indexPath.row);
} #pragma mark - TableView long press //长按
- (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
} - (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
//也可以自定义菜单,用UIButton组即可
if(action==@selector(copy:))
return YES;
return NO;
} - (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
if(action==@selector(copy:)){
//NSLog(@"copied");
}
} #pragma mark - TableView delete
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
} - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
} -(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"MyDelete";
} - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
//NSLog(@"deleted");
if(editingStyle == UITableViewCellEditingStyleDelete){
//以下两句话顺序不可反
[self.arr removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath]
withRowAnimation:UITableViewRowAnimationLeft];
}
} #pragma mark - scrollDelegate
//开始drag
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
//NSLog(@"begin drag");
} //drag过程
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
//NSLog(@"%f",self.tbView.contentOffset.y);
} //结束drag
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
//NSLog(@"end drag");
} @end

  

  

补充1:自定义accessoryView的方式(ios7 cookbook ch4.3)

补充2: UIRefreshControl控件尽管没有设定frame以及autoresizing,但是其位置总是在头部居中。原因是:

UIRefreshControl.h文件里面下面说明:

NS_CLASS_AVAILABLE_IOS(6_0) @interface UIRefreshControl : UIControl

/* The designated initializer

* This initializes a UIRefreshControl with a default height and width.

* Once assigned to a UITableViewController, the frame of the control is managed automatically.

* When a user has pulled-to-refresh, the UIRefreshControl fires its UIControlEventValueChanged event.

*

*/

补充3: 如果TableView是在xib中创建,那么绑定的dataDelegate与Delegate的时候,是绑定到fileOwner的。

补充4:使分割线充满

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

if ([cell respondsToSelector:@selector(setSeparatorInset:)]){

[cell setSeparatorInset:UIEdgeInsetsZero];

}

if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]){

[cell setPreservesSuperviewLayoutMargins:NO];

}

if ([cell respondsToSelector:@selector(setLayoutMargins:)]){

[cell setLayoutMargins:UIEdgeInsetsZero];

}

}

UITableView的使用的更多相关文章

  1. iOS UITableView 与 UITableViewController

    很多应用都会在界面中使用某种列表控件:用户可以选中.删除或重新排列列表中的项目.这些控件其实都是UITableView 对象,可以用来显示一组对象,例如,用户地址薄中的一组人名.项目地址. UITab ...

  2. UITableView(二)

    #import "ViewController.h" @interface ViewController () @end @implementation ViewControlle ...

  3. iOS: 在UIViewController 中添加Static UITableView

    如果你直接在 UIViewController 中加入一个 UITableView 并将其 Content 属性设置为 Static Cells,此时 Xcode 会报错: Static table ...

  4. iOS 编辑UITableView(根据iOS编程编写)

    上个项目我们完成了 JXHomepwner 简单的应用展示,项目地址.本节我们需要在上节项目基础上,增加一些响应用户操作.包括添加,删除和移动表格. 编辑模式 UITableView 有一个名为  e ...

  5. 使用Autolayout实现UITableView的Cell动态布局和高度动态改变

    本文翻译自:stackoverflow 有人在stackoverflow上问了一个问题: 1 如何在UITableViewCell中使用Autolayout来实现Cell的内容和子视图自动计算行高,并 ...

  6. iOS - UITableView中Cell重用机制导致Cell内容出错的解决办法

    "UITableView" iOS开发中重量级的控件之一;在日常开发中我们大多数会选择自定Cell来满足自己开发中的需求, 但是有些时候Cell也是可以不自定义的(比如某一个简单的 ...

  7. UITableView cell复用出错问题 页面滑动卡顿问题 & 各杂七杂八问题

    UITableView 的cell 复用机制节省了内存,但是有时对于多变的自定义cell,重用时会出现界面出错(例如复用出错,出现cell混乱重影).滑动卡顿等问题,这里只简单敲下几点复用出错时的解决 ...

  8. UITableview delegate dataSource调用探究

    UITableview是大家常用的UIKit组件之一,使用中我们最常遇到的就是对delegate和dataSource这两个委托的使用.我们大多数人可能知道当reloadData这个方法被调用时,de ...

  9. UITableView点击每个Cell,Cell的子内容的收放

    关于点击TableviewCell的子内容收放问题,拿到它的第一个思路就是, 方法一: 运用UITableview本身的代理来处理相应的展开收起: 1.代理:- (void)tableView:(UI ...

  10. 使用UITableView的分组样式

    分组样式顾名思义是对TableView中的数据行进行分组处理,每个分组都有一个header和footer. TableView中header的英文文本是大写的,footer的英文文本是小写的.如下图浅 ...

随机推荐

  1. jQuery介绍 DOM对象和jQuery对象的转换与区别

    jQuery介绍 DOM对象和jQuery对象的转换与区别 jQuery介绍      jQuery: http://jquery.com/      write less, do more.   j ...

  2. Linux0.11内核--进程调度分析之1.初始化

    [版权所有,转载请注明出处.出处:http://www.cnblogs.com/joey-hua/p/5596746.html ] 首先看main.c里的初始化函数main函数里面有个函数是对进程调度 ...

  3. Android编码规范03

    一.整个项目的目录规范化sundy老师建议有:系统目录规范.源代码目录规范. 1.系统目录规范: 指项目目录中不仅包括源代码,还需要包括:需求相关文档.设计文档.计划日志文档.测试文档.项目进行中学习 ...

  4. (转)[原] Android 自定义View 密码框 例子

    遵从准则 暴露您view中所有影响可见外观的属性或者行为. 通过XML添加和设置样式 通过元素的属性来控制其外观和行为,支持和重要事件交流的事件监听器 详细步骤见:Android 自定义View步骤 ...

  5. Java源码分析之ArrayList

    ArrayList是以数组为基准的容器类,和LinkedList(链表)正好相反.因而ArrayList拥有更好的查找性能,增删操作则差一些.ArrayList封装了对于常规数组的操作,同时可以自动扩 ...

  6. ORACLE查看补丁出现“OPatch failed with error code 1”

    案例场景:               在Oracle Linux Server release 5.7上安装完ORACLE 10g后,顺便将PSR(Patch Set Release)p681018 ...

  7. winform窗体(五)——布局方式

    一.默认布局 ★可以加panel,也可以不加: ★通过鼠标拖动控件的方式,根据自己的想法布局.拖动控件的过程中,会有对齐的线,方便操作: ★也可选中要布局的控件,在工具栏中有对齐工具可供选择,也有调整 ...

  8. 【转】java NIO 相关知识

    原文地址:http://www.iteye.com/magazines/132-Java-NIO Java NIO(New IO)是从Java 1.4版本开始引入的一个新的IO API,可以替代标准的 ...

  9. OpenStack 架构 - 每天5分钟玩转 OpenStack(15)

    终于正式进入 OpenStack 部分了. 今天开始,CloudMan 将带着大家一步一步揭开 OpenStack 的神秘面纱. OpenStack 已经走过了 6 个年头. 每半年会发布一个版本,版 ...

  10. java实现批量下载百度图片搜索到的图片

    就是写的个小程序,用于记录一下,方便后续查看,首先感谢下面这个博客,从这篇文章衍生的吧,大家可以学习下: http://www.cnblogs.com/lichenwei/p/4610298.html ...