0

在我的表格视图中,我为我的单元格使用背景图像(全黑图像),我还想在我的单元格中使用辅助指示器。在单元格的属性窗口中,我设置了 AccessoryDisclosureIndicator

在我的 .m 文件中,我将这些代码用于 tableview:

- (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath{

    return UITableViewCellAccessoryDisclosureIndicator;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";


    UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
        cell.backgroundColor = [UIColor clearColor];

    }

    cell.textLabel.backgroundColor=[UIColor clearColor];
    cell.textLabel.text=[arrMagaza objectAtIndex:indexPath.row]; 
    cell.textLabel.textColor=[UIColor whiteColor];


    NSString *distance=[arrDistance objectAtIndex:indexPath.row];
    cell.detailTextLabel.backgroundColor=[UIColor clearColor];
    cell.detailTextLabel.textColor=[UIColor whiteColor];
    cell.detailTextLabel.text=[distance stringByAppendingFormat:@" km"];

    cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;

    return cell;
}


- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
   cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tablecell.png"]];
   tableView.backgroundColor=[UIColor blackColor];
   tableView.separatorColor= [UIColor clearColor];
   cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
}

但是当我运行应用程序时,附件指示器未显示在视图上。我究竟做错了什么?是关于我用于单元格的背景图像的问题吗?

4

1 回答 1

0
- (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath

此方法现已弃用,因此无需实现此方法。尝试删除其他一切看起来都很好。

于 2012-06-02T19:00:17.370 回答