0

我创建了一个自定义单元格,该单元格当前显示图像和文本,但不显示详细文本。

即使使用“cell.detailTextLabel.text”,它仍然不会显示。有人知道出了什么问题吗?

我尝试将 UITableViewCellStyleSubtitle 更改为 UITableViewCellStyleDefault 等。

在过去的几个小时里,我搜索了这个网站和谷歌,试图修复,但都没有奏效。

任何帮助,将不胜感激。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"myCell";
    UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

    }

NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:nil ascending:YES selector:@selector(localizedCompare:)];
NSArray *sortedCategories = [self.tweetSongs.allKeys sortedArrayUsingDescriptors:[NSArray arrayWithObject:sortDescriptor]];

NSString *categoryName = [sortedCategories objectAtIndex:indexPath.section];

NSArray *currentCategory = [self.tweetSongs objectForKey:categoryName];

NSDictionary *currentArtist = [currentCategory objectAtIndex:indexPath.row];
NSDictionary *currentSong = [currentCategory objectAtIndex:indexPath.row];

cell.textLabel.text = [currentSong objectForKey:@"Song"];
cell.detailTextLabel.text = [currentArtist objectForKey:@"Artist"];
cell.textLabel.textColor = [UIColor whiteColor];
cell.imageView.image = [UIImage imageNamed:[currentArtist objectForKey:@"Artwork"]]
}

这是单元格屏幕截图的链接(我不允许在没有 10 个代表的情况下附加图像):

在此处输入图像描述

4

3 回答 3

0
    cell.textLabel.text = [currentSong objectForKey:@"Song"];
    cell.detailTextLabel.text = @"YourName"; //[currentArtist objectForKey:@"Artist"];
    cell.detailTextLabel.textColor = [UIColor redColor];
    cell.textLabel.textColor = [UIColor blackColor];//Change your color
    cell.imageView.image = [UIImage imageNamed:[currentArtist objectForKey:@"Artwork"]];

像这样试试。它在我的 Xcode 中工作。

于 2012-05-16T12:13:04.307 回答
0

尝试更改此行。

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

我会用默认样式初始化。看看是否有帮助。

于 2012-05-16T13:18:07.557 回答
0

问题是自定义单元格的高度太小,我认为无论如何,因为当我增加高度时它起作用了。

于 2012-05-18T10:32:17.057 回答