我有一个NSDictionary
我们会说是这样的:
key: value:
name Bookshelf
movies Array containing: (Movie 1, Movie 2, Movie 3)
books Array containing: (Book 1, Book 2, Book 3)
music Array containing: (Music 1, Music 2, Music 3)
等等。现在我要做的是创建一个tableView,显示所有这些信息,但根据字典键的不同,使用不同类型的单元格。例如,电影使用cellForMovies
本书使用cellForBooks
音乐使用cellForMusic
,每个都有自己的布局。
显然,我过于简单化了,但希望你明白我要做的事情。
如果我为每个部分执行部分和不同的单元格类型,我能够完成此操作,但我不想这样做。我希望能够拥有这样的表格,例如:
cellForBooks
cellForMovies
cellForMovies
cellForMusic
cellForBooks
等等......您可以指出我的任何想法或资源?我只关心iOS 5支持(故事板)。
使用解决方案进行编辑:
非常感谢所有帮助过的人,特别是将最后一块放在一起的阁楼。
最终工作的是将数据结构更改为字典数组,然后为每个条目添加Key: type Value: book/movie/music
。数据结构现在看起来像:
Array[0]: Dictionary: [Key: type Value: book], [Key: name Value: Physics];
Array[1]: Dictionary: [Key: type Value: music], [Key: name Value: Rock];
然后配置我执行此操作的单元格:
NSString *CellIdentifier = @"Cell";
NSDictionary *object = [self.listOfStuff objectAtIndex:indexPath.row];
if ([[object objectForKey:@"type"] isEqualToString:@"book"]){
CellIdentifier = @"BookCell";
}else if ([[object objectForKey:@"type"] isEqualToString:@"music"]){
CellIdentifier = @"MusicCell";
}else if ([[object objectForKey:@"type"] isEqualToString:@"movie"]){
CellIdentifier = @"MovieCell";
}
每个都在故事板中有不同的tableviewcell。我们想知道您是否要使用任何内置单元格功能,例如cell.textLabel.text
,您需要执行此操作:
cell.textLabel.text = [object objectForKey:@"name"];
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.opaque = NO;
希望将来可以帮助其他人。
答案 0 :(得分:6)
在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
方法中,您可以根据indexPath
返回多种类型的单元格。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row > 5) { // Your conditions here to choose between Books and Movies
BookCell *cell = [tableView dequeueReusableCellWithIdentifier:@"bookCell"];
if (!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"bookCell"];
}
return cell;
} else {
MovieCell *cell = [tableView dequeueReusableCellWithIdentifier:@"movieCell"];
if (!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"movieCell"];
}
return cell;
}
return nil;
}
答案 1 :(得分:6)
非常感谢所有帮助过的人,特别是将最后一块放在一起的阁楼。
最终工作的是将数据结构更改为字典数组,然后为每个条目添加Key: type Value: book/movie/music
。数据结构现在看起来像:
Array[0]: Dictionary: [Key: type Value: book], [Key: name Value: Physics];
Array[1]: Dictionary: [Key: type Value: music], [Key: name Value: Rock];
然后配置我执行此操作的单元格:
NSString *CellIdentifier = @"Cell";
NSDictionary *object = [self.listOfStuff objectAtIndex:indexPath.row];
if ([[object objectForKey:@"type"] isEqualToString:@"book"]){
CellIdentifier = @"BookCell";
}else if ([[object objectForKey:@"type"] isEqualToString:@"music"]){
CellIdentifier = @"MusicCell";
}else if ([[object objectForKey:@"type"] isEqualToString:@"movie"]){
CellIdentifier = @"MovieCell";
}
每个都在故事板中有不同的tableviewcell。我们想知道您是否要使用任何内置单元格功能,例如cell.textLabel.text
,您需要执行此操作:
cell.textLabel.text = [object objectForKey:@"name"];
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.textLabel.opaque = NO;
希望将来可以帮助其他人。
答案 2 :(得分:3)
在故事板中,将tableView设置为使用Dynamic Prototypes。然后,为您要使用的每种单元格创建一个单元格。适当地自定义,然后在检查器中为每个人提供一个唯一的重用标识符(例如MovieCell)。
然后,在tableview:cellForRowAtIndexPath:方法中,为该索引路径中的内容确定适当的单元格类型。如果indexPath上的单元格应该是一个影片单元格,则可以使用以下方法创建单元格:
static NSString * MovieCellIdentifier = @"MovieCell"; // This must match the storyboard
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MovieCellIdentifier];
这将为您提供故事板中指定为“MovieCell”的单元格。如果需要进一步自定义它,请创建一个UITableViewCell子类,并为Storyboard中的单元格指定该子类。然后,您可以通过转换返回的单元格来引用此处的属性等进行自定义:
MovieTableViewCell *movieCell = (MovieTableViewCell *)cell;
// customize
答案 3 :(得分:0)
我的意见是你应该在一个单元格中实现所有细胞类型。这意味着你应该拥有一个UITableViewCell
类和.xib。然后在cellForRowAtIndexPath
中创建单元格,然后根据实际要求显示/隐藏构成书籍或电影的子视图。
在这样的设计中,你的细胞会有些重量级。但是,它仍然比使用多个单元类更好,因为这样可以更有效地重用单元格([UITableView dequeueReusableCellWithIdentifier]
)。
我相信UITableView是针对一种类型的细胞而设计的。因此,如果您的布局不同,您仍然可以将它们放在一个位置并使用框架或显示/隐藏来控制单元格行为。
答案 4 :(得分:0)
我认为你应该使用以下作为你的小区标识符。
- (UITableViewCell *)tableView:(UITableView *)tmpTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSString *cellIdentifier = [NSString stringWithFormat:@"Cell%d%d",indexPath.section,indexPath.row];
UITableViewCell *cell = [tmpTableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (nil == cell) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
// do ur stuff here
}
return cell;
}