我有一个标准UITableView
,我在下面提到了创建单元格。这在iOS6中完全正常,但在iOS7上detailTextLabel
在我滚动并且需要更改的单元格不在视图之前不会更新。
在调试时,我看到当我调用[tableview reloadData]
时,它每次都会在ios7上创建一个新单元格,而在ios6上它会在#os; deque(s)"以前加载的单元格如此调用reloadData
它会显示更新的文本并按预期删除加载图像。
为什么细胞没有得到“#de; dequed"在ios7上?
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"CEllId";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"MainText";
if (self.requestInProgress)
{
cell.detailTextLabel.text = @"Processing...";
// show loading spinner
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
cell.accessoryType = UITableViewCellAccessoryNone;
cell.accessoryView = spinner;
[spinner startAnimating];
}
else
{
// display the status
cell.detailTextLabel.text = @"the text returned";
// hide loading indicator & show disclosure indicator
cell.accessoryView = nil;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
return cell;
}
答案 0 :(得分:1)
在我的情况下,问题在于UITableView
继承自每次重新加载时将baseviewController
设置为tableView
的{{1}}类的类。
将nil
添加到其自己的tableView
修复它。
答案 1 :(得分:1)
代码很好。我认为细胞高度问题。你只需修复高度单元格。然后它会正常工作。 方法名称: heightForRowAtIndexPath
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return 3;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 50;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"CEllId";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"MainText";
if (YES)
{
cell.detailTextLabel.text = @"Processing...";
// show loading spinner
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
cell.accessoryType = UITableViewCellAccessoryNone;
cell.accessoryView = spinner;
[spinner startAnimating];
}
else
{
// display the status
cell.detailTextLabel.text = @"the text returned";
// hide loading indicator & show disclosure indicator
cell.accessoryView = nil;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
return cell;
}
答案 2 :(得分:0)
似乎tableview单元格在视图中不完全可见。在这种情况下
你可以使用[cell setNeedsDisplay];
例如:
dispatch_async(dispatch_get_main_queue(), ^{
[cell setNeedsDisplay];
[cell.contentView addSubview:yourView];
});
希望这适合你。