UITableview 的每个单元格中的不同图像
Posted
技术标签:
【中文标题】UITableview 的每个单元格中的不同图像【英文标题】:Different image in each cell of a UITableview 【发布时间】:2009-12-05 05:31:08 【问题描述】:我想为表格视图的每个单元格设置不同的图像。我不知道该怎么做——请帮帮我。
【问题讨论】:
【参考方案1】:创建一个属性来存储不同图像名称的数组。
在您的标头 (.h
) 文件中:
@interface MyViewController : UITableViewController
NSArray *cellIconNames;
// Other instance variables...
@property (nonatomic, retain) NSArray *cellIconNames;
// Other properties & method declarations...
@end
在您的实施 (.m
) 文件中:
@implementation MyViewController
@synthesize cellIconNames;
// Other implementation code...
@end
在您的viewDidLoad
方法中,将cellIconNames
属性设置为包含不同图像名称的数组(按照它们想要出现的顺序):
[self setCellIconNames:[NSArray arrayWithObjects:@"Lake.png", @"Tree.png", @"Water.png", @"Sky.png", @"Cat.png", nil]];
在你的tableView:cellForRowAtIndexPath:
表格视图数据源方法中,获取单元格所在行对应的图片名称:
NSString *cellIconName = [[self cellIconNames] objectAtIndex:[indexPath row]];
然后创建一个UIImage
对象(使用cellIconName
指定图像)并将单元格的imageView
设置为这个UIImage
对象:
UIImage *cellIcon = [UIImage imageNamed:cellIconName];
[[cell imageView] setImage:cellIcon];
在第 3 步之后,您的 tableView:cellForRowAtIndexPath:
方法将如下所示:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
/* Initialise the cell */
static NSString *CellIdentifier = @"MyTableViewCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
/* Configure the cell */
NSString *cellIconName = [[self cellIconNames] objectAtIndex:[indexPath row]];
UIImage *cellIcon = [UIImage imageNamed:cellIconName];
[[cell imageView] setImage:cellIcon];
// Other cell configuration code...
return cell;
【讨论】:
这段代码中的 listIcon 是什么,以及我们在哪里使用作为数组使用的 cellIconNames。 @uttam:哎呀!listIcon
应该是 cellIcon
(我现在已经更正了代码)。 cellIconNames
是一个NSArray
,所以我们把它当作一个数组来使用...
第 4 步是什么,您给出了第 1、2、3 步,但没有给出第 4 步。并且 setCellIconNames 与 cellIconNames 相同。
@uttam:我最初将第 3 步拆分为两个步骤(3 和 4),但忘记将“在第 3 步和第 4 步之后”更改为“在第 3 步之后”。对不起!至于setCellIconNames
,见developer.apple.com/iphone/library/documentation/cocoa/…。基本上,setCellIconNames
是一个改变cellIconNames
实例变量值的方法(它是自动生成的,因为我们已经声明了cellIconNames
属性)。这种类型的方法称为 mutator/setter。
@uttam:我强烈推荐你阅读cocoadevcentral.com/d/learn_objectivec,它很好地介绍了Objective-C/Cocoa 的概念,例如访问器和修改器。【参考方案2】:
您可以创建一个包含 UIImageView 的自定义单元格,但最简单的方法是在您的 -cellForRowAtIndexPath 表视图委托中设置默认 UITableViewCell 的内置图像视图。像这样的:
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithFrame:CGRectZero];
//... other cell initializations here
[[cell imageView] setImage:image];
其中 image 是您通过从 URL 或本地应用程序包加载而创建的 UIImage。
【讨论】:
以上是关于UITableview 的每个单元格中的不同图像的主要内容,如果未能解决你的问题,请参考以下文章