0

我正在使用以下代码来显示自定义 UITableViewCell。然而问题是它只显示backImage而不显示任何其他标签或图像。

这是代码和ss。

怎么了???

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIImageView *maleIcon;
    UIImageView *femaleIcon;
    UIImageView *backImage;

    UILabel *name;
    UILabel *address;
    UILabel *maleCount;
    UILabel *femaleCount;

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];

    VenueClass *venue = [self.venueArray objectAtIndex:[indexPath row]];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MyIdentifier"];
        backImage =  [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];

        maleIcon   =  [[UIImageView alloc] initWithFrame:CGRectMake(234,143,25,25)];
        femaleIcon =  [[UIImageView alloc] initWithFrame:CGRectMake(234,173,25,25)];

        maleIcon.image    =   [UIImage imageNamed:@"rectangle.png"];
        femaleIcon.image  =   [UIImage imageNamed:@"rectangle.png"];

        name        = [[UILabel alloc] initWithFrame:CGRectMake(10,148,140,22)];
        address     = [[UILabel alloc] initWithFrame:CGRectMake(10,178,140,22)];
        maleCount   = [[UILabel alloc] initWithFrame:CGRectMake(266,145,48,22)];
        femaleCount = [[UILabel alloc] initWithFrame:CGRectMake(266,175,48,22)];

        name.font        = [UIFont boldSystemFontOfSize:16];
        address.font     = [UIFont systemFontOfSize:14];
        maleCount.font   = [UIFont boldSystemFontOfSize:14];
        femaleCount.font = [UIFont boldSystemFontOfSize:14];

        name.backgroundColor        = [UIColor clearColor];
        address.backgroundColor     = [UIColor clearColor];
        maleCount.backgroundColor   = [UIColor clearColor];
        femaleCount.backgroundColor = [UIColor clearColor];

        name.textColor        = [UIColor whiteColor];
        address.textColor     = [UIColor whiteColor];
        maleCount.textColor   = [UIColor whiteColor];
        femaleCount.textColor = [UIColor whiteColor];

        [cell.contentView addSubview:backImage];
        [cell.contentView addSubview:name];
        [cell.contentView addSubview:address];
        [cell.contentView addSubview:maleCount];
        [cell.contentView addSubview:femaleCount];
        [cell.contentView addSubview:femaleIcon];
        [cell.contentView addSubview:maleIcon];

    }

    CLLocation *location = [[CLLocation alloc] initWithLatitude:[venue.latitude doubleValue] longitude:[venue.longitude doubleValue]];

    AppDelegate *appDelegate = (AppDelegate *) [[UIApplication sharedApplication] delegate];
    int distance = [location distanceFromLocation:appDelegate.myLocationCtrl.locationManager.location];
    distance = distance / 1000;

    [femaleCount setText:venue.femaleCount];
    [maleCount   setText:venue.maleCount];
    [name        setText:venue.name];
    [address     setText:[NSString stringWithFormat:@"%@/%d Km", venue.address, distance]];

    cell.accessoryType = UITableViewCellAccessoryNone;
    cell.backgroundColor = [UIColor clearColor];


    NSString *path = [[NSString stringWithFormat:@"%@%@" ,IMAGE_URL, venue.imagePath ] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    [backImage setImageWithURL:[NSURL URLWithString:path] placeholderImage:[UIImage imageNamed:@""]
                  completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType)
     {         
     }];

    return cell;
}

在此处输入图像描述

4

2 回答 2

1

是的,您的背面图像太宽太高,您将其设置为 320x100 尝试 60x100

抱歉编辑:您的其他项目不在屏幕/单元格中,因为它们的 Y 坐标 >100。Tr 将第二个参数减少到您的 initWithFrame:CGRectMake(X, Y must be less than cell height, width, height)

于 2013-11-02T17:03:11.343 回答
0

MyIdentifier之前是否在代码中为标识符注册了一个类?

如果是这样,则cell永远不会为零,因为该dequeueReusableCellWithIdentifier:方法将始终返回一个单元格。从文档:

如果您为指定的标识符注册了一个类并且必须创建一个新单元格,则此方法通过调用其 initWithStyle:reuseIdentifier: 方法来初始化该单元格。对于基于 nib 的单元格,此方法从提供的 nib 文件加载单元格对象。如果现有单元格可供重用,则此方法将改为调用该单元格的 prepareForReuse 方法。

这意味着您的代码将永远不会运行您在if(cell == nil){}语句中执行的设置

如果您没有为该重用标识符注册 Class 或 Nib,则应用程序应该会因异常而崩溃,因此我怀疑您在应用程序中看到的内容是您注册的默认 nib 或类的外观。

一种常见的方法是在您的自定义 UITableViewCell 类或您的 nib 中配置所有这些子标签和 imageView,然后在此tableView:cellForRowAtIndexPath:方法中将相关值分配给这些属性。

于 2013-11-02T17:02:46.257 回答