作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UITableView,我通过它设置背景颜色
UIView *myView = [[UIView alloc] init];
if ((indexPath.row % 2) == 0)
myView.backgroundColor = [UIColor greenColor];
else
myView.backgroundColor = [UIColor whiteColor];
cell.backgroundView = myView;
[myView release];
我发现的问题是,当我编辑表格时(通过 setEditing:YES...),一些相同颜色不变的单元格彼此相邻。如何强制 UITableView 完全重绘。 reloadData 做得不太好。
是否有深度清理重绘?
最佳答案
我以前遇到过这个问题,所以我将与您分享我是如何解决它的:
您可以使用 bool 标志(例如称为 needsRefresh
)来控制 -cellForRowAtIndexPath
中单元格创建的行为:
一个例子:
- (UITableViewCell*) tableView:(UITableView *) tableView cellForRowAtIndexPath:(NSIndexPath*) indexPath {
UITableViewCell *cell = [tableView dequeueResuableCellWithIdentifier:SOME_ID];
if(!cell || needsRefresh) {
cell = [[[UITableViewCell alloc] init....] autorelease];
}
//.....
return cell;
}
因此,当您需要硬重新加载时,请将 needsRefresh
标志设置为 YES
。就像一个痘痘一样简单。
关于iphone - 强制 UITableView 转储所有可重用单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3197816/
我正在为我的应用程序使用 Tank-Auth。我唯一的问题是激活和重置帐户密码。 用于登录、注册、注销;我对这些代码没有问题; $route['login'] = "/auth/login"; $ro
我是一名优秀的程序员,十分优秀!