5

我有一个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 支持(故事板)。

编辑解决方案:

非常感谢所有提供帮助的人,尤其是 atticus,他将最后一块拼凑在一起。

最终的工作是将数据结构更改为字典数组,然后在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;

希望这对将来的其他人有所帮助。

4

5 回答 5

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;
}
于 2012-04-12T02:38:11.333 回答
5

非常感谢所有提供帮助的人,尤其是 atticus,他将最后一块拼凑在一起。

最终的工作是将数据结构更改为字典数组,然后在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;

希望这对将来的其他人有所帮助。

于 2012-06-11T14:57:53.703 回答
3

在您的故事板中,将您的 tableView 设置为使用动态原型。然后,为您要使用的每种单元格创建一个单元格。适当地定制这些,然后在检查器中为每个人提供一个唯一的重用标识符(例如 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
于 2012-04-12T02:43:51.110 回答
0

我的意见是,您应该在一个单元中实现所有单元类型。这意味着您应该UITableViewCell为所有课程设置一个课程和 .xib。然后在 中cellForRowAtIndexPath,创建单元格,然后根据实际需要,显示/隐藏组成一本书或一部电影的子视图。

在这样的设计中,你的细胞会有点重。但是,它仍然比使用多个单元类更好,因为这种方式单元重用更有效([UITableView dequeueReusableCellWithIdentifier])。

我相信 UITableView 是针对一种类型的单元格设计的。因此,如果您的布局发生变化,您仍然可以将它们放在一个位置并使用框架或显示/隐藏来控制单元格行为。

于 2012-04-12T02:43:06.483 回答
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;
}
于 2012-04-12T05:13:52.263 回答