通过继承UITableViewCell来自定义cell
1、创建一个空的项目、命名:


2、创建一个UITableViewController 并且同时创建xib:

3、设置AppDelegate.m中window的根控制器为刚刚创建的TableViewController:
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- {
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- TableViewController *tableViewController = [[[TableViewController alloc] init] autorelease];
-
- self.window.rootViewController = tableViewController;
- [self.window makeKeyAndVisible];
- return YES;
- }
4、创建自定义的UITableViewCell:

5、创建自定义cell的xib 拖放需要的控件
选择User
Interface。
创建空的xib。
拖入Cell控件。
完成自定义的cell控件。
设置cell控件的Identfier。
绑定Cell类并且将控件的输出口关联到TableViewCell.h文件中。
6、对TableViewController类编码,在委托方法中设置自定义的Cell:
- #import "TableViewController.h"
- #import "TableViewCell.h"
-
- @interface TableViewController (){
- NSMutableArray *tableData;
- }
-
- @end
-
- @implementation TableViewController
-
- - (id)initWithStyle:(UITableViewStyle)style
- {
- self = [super initWithStyle:style];
- if (self) {
-
- }
- return self;
- }
-
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
- tableData = [[NSMutableArray alloc] init];
- for (int i = 0; i< 10; i++) {
- [tableData addObject:[NSString stringWithFormat:@"MyCellDemon%i",i]];
- }
-
-
- self.tableView.rowHeight = 90;
-
- }
-
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- }
-
- #pragma mark - Table view data source
-
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- {
- #warning Potentially incomplete method implementation.
- return 1;
- }
-
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- #warning Incomplete method implementation.
- return [tableData count];
- }
-
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
-
- static NSString *CellIdentifier = @"TableViewCell";
-
- TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
-
- cell = [[[NSBundle mainBundle] loadNibNamed:@"TableViewCell" owner:self options:nil] lastObject];
- }
-
-
- cell.titleLabel.text = [tableData objectAtIndex:indexPath.row];
- cell.content.text = @"这是一些测试数据";
-
- cell.iamge.image = [UIImage imageNamed:@"testImage.jpg"];
- return cell;
- }
-
- #pragma mark - Table view delegate
-
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
-
- }
-
- @end
最终效果:

ios之UITabelViewCell的自定义(xib实现)
原文:http://www.cnblogs.com/yulang314/p/3550487.html