通过xib自定义UITableViewCell

一、新建iOS Application工程,选择Single View Application,不要选中Use Storyboard.假设指定的是product name是:UITableViewCellDemo,则完成后自动生成代码视图如下图:

二。新建一个UITableViewCell文件:

三。Add---New Files----User Interface-----Empty XIB

创建一个空的  MyTableViewCell.xib 文件,记住,XIB的名称一定要跟 签名的类的名称一致,也就是一模一样。

一定要选 Empty XIB类型,如果不是选的这个,那么创建的XIB里面的已经存在的那个UIView将不能调整高度,它的高度固定死了。

4.在xib中拖入一个Table View Cell 和一个label 一个imageView ,并于MyTableViewCell中连接如下图:

五。这样,就可以往这个新添加的View里面添加我们自己的个性化控件了,这个View就是我们的Cell的模板了。这个过程跟普通的XIB一样,没有什么特别的。

那么如何在代码中使用这个MyTableViewCell呢?

代码如下:

MyTableViewCell类:

  1. //  MyTableViewCell.h
  2. //  UITableViewCellDemo
  3. //
  4. //  Created by WildCat on 13-8-6.
  5. //  Copyright (c) 2013年 wildcat. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface MyTableViewCell : UITableViewCell
  9. @property (weak, nonatomic) IBOutlet UIImageView *imageView;
  10. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  11. @property (copy,nonatomic) NSString *titleName;
  12. @property (copy,nonatomic) NSString *image;
  13. @end
  1. //
  2. //  MyTableViewCell.m
  3. //  UITableViewCellDemo
  4. //
  5. //  Created by WildCat on 13-8-6.
  6. //  Copyright (c) 2013年 wildcat. All rights reserved.
  7. //
  8. #import "MyTableViewCell.h"
  9. @implementation MyTableViewCell
  10. @synthesize imageView;
  11. @synthesize titleLabel;
  12. @synthesize titleName;
  13. @synthesize image;
  14. -(void)setImage:(NSString *)image{
  15. self.imageView.image=[UIImage imageNamed:[image copy]];
  16. }
  17. -(void)setTitleName:(NSString *)titleName{
  18. self.titleLabel.text=[titleName copy];
  19. }
  20. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  21. {
  22. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  23. if (self) {
  24. // Initialization code
  25. }
  26. return self;
  27. }
  28. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  29. {
  30. [super setSelected:selected animated:animated];
  31. // Configure the view for the selected state
  32. }
  33. @end

ViewController类文件:

  1. //  ViewController.h
  2. //  UITableViewCellDemo
  3. //
  4. //  Created by WildCat on 13-8-6.
  5. //  Copyright (c) 2013年 wildcat. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
  9. @property (nonatomic,strong) UITableView *myTableView;
  10. @end
  1. //
  2. //  ViewController.m
  3. //  UITableViewCellDemo
  4. //
  5. //  Created by WildCat on 13-8-6.
  6. //  Copyright (c) 2013年 wildcat. All rights reserved.
  7. //
  8. #import "ViewController.h"
  9. #import "MyTableViewCell.h"
  10. @interface ViewController ()
  11. @end
  12. @implementation ViewController
  13. @synthesize myTableView=_myTableView;
  14. #pragma mark -实现协议方法
  15. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;{
  16. return 1;
  17. }
  18. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  19. return 5;
  20. }
  21. - (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  22. CGFloat result = 40.0f;
  23. if ([tableView isEqual:self.myTableView]){
  24. result = 80.0f;
  25. }
  26. return result;
  27. }
  28. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  29. MyTableViewCell *cell;
  30. //定义CustomCell的复用标识,这个就是刚才在CustomCell.xib中设置的那个Identifier,一定要相同,否则无法复用
  31. static NSString *identifier = @"MyTableViewCell";
  32. //根据复用标识查找TableView里是否有可复用的cell,有则返回给cell
  33. cell = (MyTableViewCell*)[tableView dequeueReusableCellWithIdentifier:identifier];
  34. //判断是否获取到复用cell,没有则从xib中初始化一个cell
  35. if (!cell) {
  36. //将Custom.xib中的所有对象载入
  37. NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"MyTableViewCell" owner:nil options:nil];
  38. //第一个对象就是CustomCell了
  39. cell = [nib objectAtIndex:0];
  40. }
  41. cell.image=@"1.jpeg";
  42. cell.titleName=@"wildcat的专栏 新浪微博:http://weibo.com/u/3202802157";
  43. return cell;
  44. }
  45. #pragma mark - Controller方法
  46. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  47. {
  48. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  49. if (self) {
  50. // Custom initialization
  51. }
  52. return self;
  53. }
  54. - (void)viewDidLoad
  55. {
  56. [super viewDidLoad];
  57. // Do any additional setup after loading the view.
  58. self.view.backgroundColor=[UIColor redColor];
  59. self.myTableView=[[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
  60. self.myTableView.dataSource=self;
  61. self.myTableView.delegate=self;
  62. self.myTableView.autoresizingMask=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
  63. [self.view addSubview:self.myTableView];
  64. }
  65. - (void)viewDidUnload
  66. {
  67. [super viewDidUnload];
  68. // Release any retained subviews of the main view.
  69. self.myTableView=nil;
  70. }
  71. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
  72. {
  73. return (interfaceOrientation == UIInterfaceOrientationPortrait);
  74. }
  75. @end

运行结果:

通过xib自定义UITableViewCell的更多相关文章

  1. iOS开发UI篇—使用xib自定义UItableviewcell实现一个简单的团购应用界面布局

    iOS开发UI篇—使用xib自定义UItableviewcell实现一个简单的团购应用界面布局 一.项目文件结构和plist文件 二.实现效果 三.代码示例 1.没有使用配套的类,而是直接使用xib文 ...

  2. 新手教程之使用Xib自定义UITableViewCell

    新手教程之使用Xib自定义UITableViewCell 前言 首先:什么是UITableView?看图 其次:什么是cell? 然后:为什么要自定cell,UITableView不是自带的有cell ...

  3. 【转】iOS 通过xib自定义UITableViewCell【原创】

    原文网址:http://blog.it985.com/9683.html 在使用tableView的时候,如果cell的布局过于复杂,通过代码搭建的话不够直观.并且要不停的调整位置,字体什么的.这时, ...

  4. 【swift学习笔记】三.使用xib自定义UITableViewCell

    使用xib自定义tableviewCell看一下效果图 1.自定义列 新建一个xib文件 carTblCell,拖放一个UITableViewCell,再拖放一个图片和一个文本框到tableviewc ...

  5. 用xib自定义UITableViewCell的注意事项——重用

    问题的提出: 有时候我们经常需要自定义tableView的cell,当cell里面的布局较为复杂时往往舍弃纯代码的方式而改用xib的方式进行自定义.当我们用纯代码的方式布局cell时,往往会在cell ...

  6. 用xib自定义UITableViewCell

    1.文件结构: 2. 先创建一个xib文件,删除原有的view,添加一个TableViewCell控件. 3.ModelTableViewController.m文件 #import "Mo ...

  7. IOS学习之路七(通过xib自定义UITableViewCell)

    一.新建iOS Application工程,选择Single View Application,不要选中Use Storyboard.假设指定的是product name是:UITableViewCe ...

  8. 【转】自定义UITableViewCell(registerNib: 与 registerClass: 的区别)

    自定义UITableViewCell大致有两类方法: 使用nib 1.xib中指定cell的Class为自定义cell类型(注意不是设置File's Owner的class) 2.调用 tableVi ...

  9. ios开发UI篇—使用纯代码自定义UItableviewcell实现一个简单的微博界面布局

    本文转自 :http://www.cnblogs.com/wendingding/p/3761730.html ios开发UI篇—使用纯代码自定义UItableviewcell实现一个简单的微博界面布 ...

随机推荐

  1. 第一个JavaWeb程序

    转载 第一个JavaWeb程序 JavaWeb学习总结第二篇—第一个JavaWeb程序 最近我在学院工作室学习并加入到研究生的项目中,在学长学姐的带领下,进入项目实践中,为该项目实现一个框架(用已有框 ...

  2. 换行符以及for循环的优化

    string str = ""; for (int i = 0; i < _errlistCusEmailInfo.Count; i++)                   ...

  3. IIS7伪静态化URL Rewrite模块

    原文 IIS7伪静态化URL Rewrite模块 在Win7安装了IIS7.5之后,搭建一些网站或者博客,但是IIS7.5本身没有URL Rewrite功能,也就是无法实现网址的伪静态化. 从网上找了 ...

  4. HTTP 错误500.19 -Internal Server Error

    原文:HTTP 错误500.19 -Internal Server Error HTTP 错误500.19 -Internal Server Error 错误代码 0x80070021 评论1 字号: ...

  5. 【Unity 3D】学习笔记四十一:关节

    关节 关节组件能够加入至多个游戏对象中,而加入关节的游戏对象将通过关节连接在一起而且感觉连带的物理效果.须要注意的是:关节必须依赖于刚体组件. 关节介绍 关节一共分为5大类:链条关节,固定关节,弹簧关 ...

  6. WCF常见问题(1) -- WebService/WCF Session Cookie

    原文:WCF常见问题(1) -- WebService/WCF Session Cookie 在.net 3.0推出WCF之前使用的WebService,有的应用有使用Session保持一些信息,在不 ...

  7. win7兼容oracle

    操作系统:win7,数据库版本:Oracle 10.0. 问题:安装Oracle10.0时,安装程序意外退出,可按照如下操作解决win7与oracle兼容性问题. 1.打开“\Oracle 10G \ ...

  8. Guava之简介

    1.介绍 Guava最初是在2007年作为“Google Collection  Library” 出现的,这个项目在处理Java集合时提供了一些有用的工具,Google的这个guava项目已经成为了 ...

  9. 对sql进行分页处理(Oracle版)

    直接代码 /// <summary> /// 对sql进行分页处理 /// </summary> /// <param name="sql">& ...

  10. 使用javaservice 将jboss 注册为服务

    近来做项目,需要jboss定期重新启动.不想再看到jboss启动那个黑洞洞的窗口,就想着把它注册为服务,然后在net start.恰好objectweb上有个open source的javaservi ...