全面解析iOS应用中自定义UITableViewCell的方法
有时候我们需要自己定义uitableviewcell的风格,其实就是向行中添加子视图。添加子视图的方法主要有两种:使用代码以及从.xib文件加载。当然后一种方法比较直观。
一、基本用法
我们这次要自定义一个cell,使得它像qq好友列表的一行一样:左边是一张图片,图片的右边是三行标签:
当然,我们不会搞得这么复杂,只是有点意思就行。
1、运行xcode 4.2,新建一个single view application,名称为custom cell:
2、将图片资源导入到工程。为此,我找了14张50×50的.png图片,名称依次是1、2、……、14,放在一个名为images的文件夹中。将此文件夹拖到工程中,在弹出的窗口中选中copy items into…
添加完成后,工程目录如下:
3、创建一个uitableviewcell的子类:选中custom cell目录,依次选择file — new — new file,在弹出的窗口,左边选择cocoa touch,右边选择objective-c class:
单击next,输入类名customcell,subclass of选择uitableviewcell:
之后选择next和create,就建立了两个文件:customcell.h和customcell.m。
4、创建customcell.xib:依次选择file — new — new file,在弹出的窗口,左边选择user interface,右边选择empty:
单击next,选择iphone,再单击next,输入名称为customcell,选择好位置:
单击create,这样就创建了customcell.xib。
5、打开customcell.xib,拖一个table view cell控件到面板上:
选中新加的控件,打开identity inspector,选择class为customcell;然后打开size inspector,调整高度为60。
6、向新加的table view cell添加控件:拖放一个imageview控件到左边,并设置大小为50×50。然后在imageview右边添加三个label,设置标签字号,最上边的是14,其余两个是12:
接下来向customcell.h添加outlet映射,将imageview与三个label建立映射,名称分别为imageview、namelabel、declabel以及loclable,分别表示头像、昵称、个性签名,地点。
选中table view cell,打开attribute inspector,将identifier设置为customcellidentifier:
为了充分使用这些标签,还要自己创建一些数据,存在plist文件中,后边会做。
7、打开customcell.h,添加属性:
@property (copy, nonatomic) uiimage *image;
@property (copy, nonatomic) nsstring *name;
@property (copy, nonatomic) nsstring *dec;
@property (copy, nonatomic) nsstring *loc;
8、打开customcell.m,向其中添加代码:
8.1 在@implementation下面添加代码:
@synthesize image;
@synthesize name;
@synthesize dec;
@synthesize loc;
8.2 在@end之前添加代码:
- (void)setimage:(uiimage *)img {
if (![img isequal:image]) {
image = [img copy];
self.imageview.image = image;
}
}
-(void)setname:(nsstring *)n {
if (![n isequaltostring:name]) {
name = [n copy];
self.namelabel.text = name;
}
}
-(void)setdec:(nsstring *)d {
if (![d isequaltostring:dec]) {
dec = [d copy];
self.declabel.text = dec;
}
}
-(void)setloc:(nsstring *)l {
if (![l isequaltostring:loc]) {
loc = [l copy];
self.loclabel.text = loc;
}
}
这相当于重写了各个set函数,从而当执行赋值操作时,会执行我们自己写的函数。
好了,现在自己定义的cell已经可以使用了。
不过在此之前,我们先新建一个plist,用于存储想要显示的数据。建立plist文件的方法前面的文章有提到。我们建好一个friendsinfo.plist,往其中添加数据如下:
注意每个节点类型选择。
9、打开viewcontroller.xib,拖一个table view到视图上,并将delegate和datasource都指向file' owner,就像上一篇文章介绍的一样。
10、打开viewcontroller.h,向其中添加代码:
#import <uikit/uikit.h>
@interface viewcontroller : uiviewcontroller<uitableviewdelegate, uitableviewdatasource>
@property (strong, nonatomic) nsarray *datalist;
@property (strong, nonatomic) nsarray *imagelist;
@end
11、打开viewcontroller.m,添加代码:
11.1 在首部添加:
#import "customcell.h"
11.2 在@implementation后面添加代码:
@synthesize datalist;
@synthesize imagelist;
11.3 在viewdidload方法中添加代码:
- (void)viewdidload
{
[super viewdidload];
// do any additional setup after loading the view, typically from a nib.
//加载plist文件的数据和图片
nsbundle *bundle = [nsbundle mainbundle];
nsurl *plisturl = [bundle urlforresource:@"friendsinfo" withextension:@"plist"];
nsdictionary *dictionary = [nsdictionary dictionarywithcontentsofurl:plisturl];
nsmutablearray *tmpdataarray = [[nsmutablearray alloc] init];
nsmutablearray *tmpimagearray = [[nsmutablearray alloc] init];
for (int i=0; i<[dictionary count]; i++) {
nsstring *key = [[nsstring alloc] initwithformat:@"%i", i+1];
nsdictionary *tmpdic = [dictionary objectforkey:key];
[tmpdataarray addobject:tmpdic];
nsstring *imageurl = [[nsstring alloc] initwithformat:@"%i.png", i+1];
uiimage *image = [uiimage imagenamed:imageurl];
[tmpimagearray addobject:image];
}
self.datalist = [tmpdataarray copy];
self.imagelist = [tmpimagearray copy];
}
11.4 在viewdidunload方法中添加代码:
self.datalist = nil;
self.imagelist = nil;
11.5 在@end之前添加代码:
#pragma mark -
#pragma mark table data source methods
- (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section {
return [self.datalist count];
}
- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath {
static nsstring *customcellidentifier = @"customcellidentifier";
static bool nibsregistered = no;
if (!nibsregistered) {
uinib *nib = [uinib nibwithnibname:@"customcell" bundle:nil];
[tableview registernib:nib forcellreuseidentifier:customcellidentifier];
nibsregistered = yes;
}
customcell *cell = [tableview dequeuereusablecellwithidentifier:customcellidentifier];
nsuinteger row = [indexpath row];
nsdictionary *rowdata = [self.datalist objectatindex:row];
cell.name = [rowdata objectforkey:@"name"];
cell.dec = [rowdata objectforkey:@"dec"];
cell.loc = [rowdata objectforkey:@"loc"];
cell.image = [imagelist objectatindex:row];
return cell;
}
#pragma mark table delegate methods
- (cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath {
return 60.0;
}
- (nsindexpath *)tableview:(uitableview *)tableview
willselectrowatindexpath:(nsindexpath *)indexpath {
return nil;
}
12、运行:
二、如何重用uitableviewcell
重用的目的是为了减少内存消耗,假如有1千个cell,如果不重用,那么每一次滑动都得重新
alloc 很多很多的cell,耗费内存,同时屏幕会出现不连续的现象,晃眼睛。
重用cell很简单,在创建cell的时候,使用
alloc initwithtableviewcellstyle:reuseidentifer这个接口创建cell实例,而非使用alloc initwithframe
使用前者表示该cell可重用,identifer使用一个固定的nsstring即可
代码如下:
-(uitableviewcell*)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath
{
static nsstring *cellidentifier = @"cell";
uitableviewcell *cell = [tableview dequeuereusablecellwithidentifier:cellidentifier];//首先从可重用队列里面弹出一个cell
if (cell == nil) {//说明可重用队列里面并cell,此时需要重新创建cell实例,采用下面方法
cell = [[uitableviewcell alloc] initwithstyle:uitableviewcellstyledefault reuseidentifier:cellidentifier] ;
}else{//此时表示有可重用cell,直接返回即可
nslog(@"cell 重用啦");
}
return cell;
}
三、如何如何动态调整cell的高度?
这个问题还是比较头疼的,下面这个函数肯定要用到
-(cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath
经过实践之后发现,可以在创建cell或者重用cell的时候,设置其frame
比如cell.frame=cgrectmake(0,0,320,450);
这个代码会有效,同时在下面这个函数里面
使用:
-(cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath
{
nslog(@"当前是第%ld行",(long)indexpath.row);
uitableviewcell *mycell=[self tableview:tableview cellforrowatindexpath:indexpath];//获取当前indexpath中的cell实例
if( mycell == nil ){
return 0;
}else{
nslog(@"%f",mycell.frame.size.height);
return mycell.frame.size.height;
}
return 0;
}
上面获取当前indexpath的cell实例会重新申请建立一个实例(意思是个cell实际要创建两个实例)
这样的目的是为了获取cell的frame,如果不这样做也可以在第一部分创建cell的时候,将cell的frame保存在一个私有
变量中,在heightforrowatindexpath中访问这个私有变量
通过上述方式可以动态改变uitableviewcell的高度
四、对于一个uilabel,根据其内容计算cgrect
首先要设置uilable的font,比如
tmlabel.font=[uifont systemfontofsize:14.0f];
然后使用boundingrectofsize计算出该尺寸对应的矩形大小,代码如下:
nsdictionary *attrdic=@{nsfontattributename:[uifont systemfontofsize:12.0f]};
cgsize labelsize=[text boundingrectwithsize:cgsizemake(320, 990)
options:nsstringdrawinguseslinefragmentorigin|nsstringdrawingusesfontleading
attributes:attrdic context:nil].size;
cgrect labelrect=cgrectmake(0, 0, labelsize.width, labelsize.height);
现在uilable的rect都可以被计算出来了,那么如果自定义一个uitableviewcell,并且其内部的uilabel高度可变的话
也是可以实现的
五、内部含有可变高度的uilabel的uitableviewcell
如果还有其他控件,比如uibutton等等,也是一样的。
这些控件在实例化的时候,设置frame为cgrectzero, 然后分别计算各自的高度和尺寸
使用cell.contentview addsubview 的方式,将这些子空间添加到cell中。重新计算cell的frame时
也需要把这些控件的frame累加上。上代码:
-(uitableviewcell*)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath
{
static nsstring *cellidentifier = @"cell";
uitableviewcell *cell = [tableview dequeuereusablecellwithidentifier:cellidentifier];
if (cell == nil) {
cell = [[uitableviewcell alloc] initwithstyle:uitableviewcellstyledefault reuseidentifier:cellidentifier] ;
uilabel *label = [[uilabel alloc] initwithframe:cgrectzero];
label.tag = 1;
label.linebreakmode = nslinebreakbycharwrapping;
label.highlightedtextcolor = [uicolor whitecolor];
label.numberoflines = 0;
label.opaque = no; // 选中opaque表示视图后面的任何内容都不应该绘制
label.font=[uifont systemfontofsize:12.0f];
label.backgroundcolor = [uicolor graycolor];
[cell.contentview addsubview:label];
uibutton *tmpbutton=[[uibutton alloc]initwithframe:cgrectzero];
tmpbutton.tag=2;
tmpbutton.backgroundcolor=[uicolor cyancolor];
[cell.contentview addsubview:tmpbutton];
tmpbutton.opaque=no;
[tmpbutton settitle:@"nihao" forstate:uicontrolstatenormal];
[tmpbutton settitlecolor:[uicolor whitecolor ]forstate:uicontrolstatehighlighted];
[tmpbutton addtarget:self action:@selector(tmpbuttonhandler:) forcontrolevents:uicontroleventtouchupinside];
}else{
nslog(@"cell 重用啦");
}
uilabel *tmplabel=(uilabel *)[cell viewwithtag:1];
nsstring *text=[tmparray objectatindex:indexpath.row];
tmplabel.text=text;
uibutton *tmpbutton=(uibutton *)[cell viewwithtag:2];
nsdictionary *attrdic=@{nsfontattributename:[uifont systemfontofsize:12.0f]};
cgsize labelsize=[text boundingrectwithsize:cgsizemake(320, 990)
options:nsstringdrawinguseslinefragmentorigin|nsstringdrawingusesfontleading
attributes:attrdic context:nil].size;
cgrect labelrect=cgrectmake(0, 0, labelsize.width, labelsize.height);//计算uilabel的rect
[tmplabel setframe:labelrect];
[tmpbutton setframe:cgrectmake(0, labelsize.height+1, 100, 50)];//计算uibutton 子控件的rect
[cell setframe:cgrectmake(0, 0, labelsize.width, labelsize.height+50+1)];//cell的frame是以上两个子控件之和
return cell;
}
为何不再创建时设置frame,而是在if和else逻辑后面?
重用cell的时候,从重用cell队列里面取出的cell,其内容(uilabel)是之前的cell内容,需要重新填充uilabel并且重新计算
整个cell的frame并设置其frame。而创建cell的时候也需要设置frame,所以这两个逻辑重复,直接放在if else逻辑外面做。
下一篇: 软件测试学习一
推荐阅读
-
全面解析iOS应用中自定义UITableViewCell的方法
-
IOS 中NSUserDefaults读取和写入自定义对象的实现方法
-
iOS中UIAlertController设置自定义标题与内容的方法
-
IOS 中NSUserDefaults读取和写入自定义对象的实现方法
-
iOS中UIAlertController设置自定义标题与内容的方法
-
iOS应用开发中AFNetworking库的常用HTTP操作方法小结
-
iOS应用程序中通过dispatch队列控制线程执行的方法
-
iOS应用开发中对UIImage进行截取和缩放的方法详解
-
详解iOS应用中自定义UIBarButtonItem导航按钮的创建方法
-
解析在Android中为TextView增加自定义HTML标签的实现方法