0

我有一个UITableView使用故事板的自定义单元格。自定义单元格内的所有对象都可以工作,但是当我滚动时UITableView,对象不会移动:

在此处输入图像描述

这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableview cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"MainCell";

MainCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[MainCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.subtitle.text = [NSString stringWithFormat:@"%@",theEvent.startDate];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}

在此处输入图像描述

关于我做错了什么的任何想法?谢谢。

4

1 回答 1

0

我解决了这个问题。我放在上面的物体UITableViewCell实际上并不在单元格内,而是在上面,UITableView因此它们充当“浮动”物体。

于 2013-08-07T19:59:29.913 回答