cocoa 默认的cell风格修改起来挺灵活的 先提供处自定义代码 其实难点在于cell重用机制 供初学者参考
- ( UITableViewCell *)tableView:( UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath *)indexPath
{
static NSString * showUserInfoCellIdentifier = @"ShowUserInfoCell" ;
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier :showUserInfoCellIdentifier];
if (cell == nil )
{
// Create a cell to display an ingredient.
cell = [[[ UITableViewCell alloc ] initWithStyle : UITableViewCellStyleSubtitle
reuseIdentifier :showUserInfoCellIdentifier]
autorelease ];
UIImageView *leftico= [[[ UIImageView alloc ] init ] autorelease ];
leftico. tag = 11 ;
leftico. frame = CGRectMake ( 0 , 0 , 100 , 60 );
[leftico setContentMode : UIViewContentModeScaleAspectFit ];
UILabel *titles= [[[ UILabel alloc ] initWithFrame : CGRectMake ( 110 , 0 , 120 , 60 )] autorelease ];
[titles setBackgroundColor :[ UIColor clearColor ] ];
titles. tag = 22 ;
[cell addSubview :titles];
[cell addSubview :leftico];
cell. accessoryType = UITableViewCellAccessoryDetailDisclosureButton ;//添加其默认的细节按钮
}
NSUInteger row=[indexPath row ];
NSLog ( @"name == %@" ,[ [ self . listdata objectAtIndex :row] objectForKey : @"name" ]);
UIImageView *imageView11 = ( UIImageView *)[cell viewWithTag : 11 ]; //重新指向那片内存
//[ [cell viewWithTag:1] removeFromSuperview];
imageView11. image = [ UIImage imageNamed : @"gongshang.png" ];
UILabel *titles22= ( UILabel *)[cell viewWithTag : 22 ];
titles22. text =[ [ self . listdata objectAtIndex :row] objectForKey : @"name" ];
// if (cell.textLabel.text isEqualToString:@" 工商银行 ") {
// cell.imageView.image= [ UIImage imageNamed:@"bg.jpg" ] ;
// }
return cell;
下面有一网友做的例程 分析对比下 看看有什么收获
我在写一个App的时候自定义了一个UITableViewCell,但是这个UITableView在运行的时候出现了每6行数据就循环重复显示的问题,而直接使用cell.textLabel.text显示是没有这个问题,以下是我实现的代码。
-
-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath
-
{
-
NSIntegersection=[indexPathsection];
-
NSIntegerrow=[indexPathrow];
-
UITableViewCell*cell;
-
-
switch
(section)
-
{
-
case
0:
-
//dosomething.
-
case
1:
-
cell=[tableViewdequeueReusableCellWithIdentifier:@
"Cell"
];
-
if
(cell==nil)
-
{
-
cell=[[[UITableViewCellalloc]initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:@
"Cell"
]autorelease];
-
-
//Image
-
UIImageView*image=[[UIImageViewalloc]initWithFrame:CGRectMake(0.0f,14.0f,45.0f,50.0f)];
-
image.backgroundColor=[UIColorclearColor];
-
image.image=[UIImageimageNamed:@
"folder.png"
];
-
[cell.contentViewaddSubview:image];
-
[imagerelease];
-
//Label
-
UILabel*titleLabel=[[UILabelalloc]initWithFrame:CGRectMake(45.0f,6.0f,214.0f,50.0f)];
-
titleLabel.text=(NSString*)[(NSArray*)[self.categoryArrayobjectAtIndex:1]objectAtIndex:row];
-
NSLog(@
"%@--%d"
,titleLabel.text,row);
-
titleLabel.textAlignment=UITextAlignmentLeft;
-
titleLabel.numberOfLines=3;
-
titleLabel.tag=201;
-
titleLabel.font=[UIFontboldSystemFontOfSize:14];
-
[cell.contentViewaddSubview:titleLabel];
-
[titleLabelrelease];
-
}
-
cell.accessoryType=UITableViewCellAccessoryDetailDisclosureButton;
-
break
;
-
}
-
-
cell.selectionStyle=UITableViewCellSelectionStyleNone;
-
return
cell;
-
}
google了一下,目前已有的解决方案是将
-
cell=[tableViewdequeueReusableCellWithIdentifier:@
"Cell"
];
替换成
-
cell=[tableViewcellForRowAtIndexPath:indexPath];
或
-
cell=nil;
这们做的目的去掉Cell的重用机制,但是这种方法都会在后台随着表格滚动一直在创建cell,通过上面源代码中Label定义里那句NSLog在控制台输出就可以看到,虽然会自动回收内存,但肯定也会给系统带来不小开销,所以不到万一得以还是不会用的。
还有一种解决方案是自己定义Cell数组,在 tableView:tableView cellForRowAtIndexPath:中进设置要显示的cell,这是手工维护cell的一种方式,对大数据量的情况肯定是不适用的,不过也能算得上是一种思路吧,可以参考一下。其代码如下:
-
//在构造函数里定义cell数组
-
for
(
int
i=0;i<31;i++)
-
{
-
static
NSString*MyBookMarkIdentifier=@
"CityMangerCell"
;
-
cityCell[i]=[[CityMangerCellalloc]initWithFrame:CGRectZeroreuseIdentifier:MyBookMarkIdentifierinitIndex:i];
-
}
-
-
//使用它
-
-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath
-
{
-
if
((0<=indexPath.row)&&(indexPath.row<31))
-
return
cityCell[indexPath.row];
-
return
nil;
-
}
后来我仔细分析了一下程序,找到了问题所在:
原因是在if (cell == nil)判断内部不应该对其label进行赋值,即不使用这句:
-
titleLabel.text
=(NSString*)[(NSArray*)[self.categoryArrayobjectAtIndex:1]objectAtIndex:row];
正确的做法应该是在if (cell == nil){}判断后面进行赋值。即
-
if(
cell
==nil)
-
{
-
....
-
}
-
UILabel*
l1
=(UILabel*)[cell.contentViewviewWithTag:201];
-
l1.text
=(NSString*)[(NSArray*)[self.categoryArrayobjectAtIndex:1]objectAtIndex:row];
分析原因如下:
UITableView中被实例化的cell个数由屏高和每个cell的高度决定,因为我的cell高度设置为80,一屏只能 显示6个Cell(只有6个cell被实例化),也就是只有这6个cell才会执行if (cell == nil){}中的代码,从第6行往后的cell都是重用的这6个cell,也就是说从第7行开始将不会执行if (cell = nil){}中的代码,当UITableView需要绘制第7行cell的时候,会取得第1个cell进行重用,如果我们不把原来第1行cell中的 Label内容进行修改,那么第7行将完全显示第1行中的内容,所以才会在第6行之后开始出现数据重复的情况。
现在我将Label内容设置的代码放到if (cell == nil){}之后,它将会对每一个被重用的cell的Label进行设定,也就不会再出现cell内容重复的现象。
希望这个问题的解决过程会对大家有所帮助。
本文出自 “ 一叶障目 ” 博客,请务必保留此出处 http://ddkangfu.blog.51cto.com/311989/465557

