我让表格单元格正确显示了数据,但随后创建了一个自定义单元格和类,以便可以更好地控制布局...但是我无法让我的自定义单元格显示数据。标签及其占位符文本...我想念什么?

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.results.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"CellResults";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    // Configure the cell...

    ResultsCell *resultscell = (ResultsCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    NSManagedObject *result = [self.results objectAtIndex:indexPath.row];


    NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"MMMM dd, yyyy"];
    [dateFormatter setTimeZone:[NSTimeZone localTimeZone]];
    NSString *eventDate = [dateFormatter stringFromDate:[self trialDate]];

    // formatting
    resultscell.labelEventDesc.numberOfLines = 0;

    //  populate the cells
    [resultscell.labelEventDesc setText:[NSString stringWithFormat:@"%@",[result valueForKey:@"eventdesc"]]];
    [resultscell.labelWeeksOut setText:[NSString stringWithFormat:@"%@",[result valueForKey:@"weeksout"]]];
    [resultscell.labelEventDate setText:[NSString stringWithFormat:@"%@",eventDate]];
    return cell;
}

最佳答案

您正在创建2个不同的单元格实例(cellresultscell),配置一个并返回另一个。因此,您的自定义类实例永远不会真正用于任何事情。

去掉:

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];


并将return cell;更改为return resultscell;

10-07 19:20
查看更多