上篇文章介绍了如何用UItableVIEw显示表格,并讲了几种UItableVIEwCell的风格。不过有时候我们需要自己定义UItableVIEwCell的风格,其实就是向行中添加子视图。添加子视图的方法主要有两种:使用代码以及从.xib文件加载。当然后一种方法比较直观。
我们这次要自定义一个Cell,使得它像QQ好友列表的一行一样:左边是一张图片,图片的右边是三行标签:
当然,我们不会搞得这么复杂,只是有点意思就行。
1、运行Xcode 4.2,新建一个Single VIEw Application,名称为Custom Cell:
2、将图片资源导入到工程。为此,我找了14张50×50的.png图片,名称依次是1、2、……、14,放在一个名为Images的文件夹中。将此文件夹拖到工程中,在d出的窗口中选中copy items into…
添加完成后,工程目录如下:
3、创建一个UItableVIEwCell的子类:选中Custom Cell目录,依次选择file — New — New file,在d出的窗口,左边选择Cocoa touch,右边选择Objective-C class:
单击Next,输入类名CustomCell,Subclass of选择UItableVIEwCell:
之后选择Next和Create,就建立了两个文件:CustomCell.h和CustomCell.m。
4、创建CustomCell.xib:依次选择file — New — New file,在d出的窗口,左边选择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、运行:
最终代码:http://www.oschina.net/code/snippet_164134_11111
总结以上是内存溢出为你收集整理的iOS开发15:自定义UITableViewCell全部内容,希望文章能够帮你解决iOS开发15:自定义UITableViewCell所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)