- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 UITableView,一旦它滚出屏幕,它就不会释放它显示的数据。
每个表格单元格都需要显示名称、日期和图片。第一个充满屏幕的单元格在启动时可以正常工作,因为它们没有被重复使用。然而,一旦您开始滚动并且单元格被重复使用,显示的数据就会堆叠在该单元格之前存储的内容上(例如:日期将在 1972 年 12 月 15 日之上堆叠 1981 年 7 月 4 日)。
这是我的代码:
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"";
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:kTableViewCellIdentifier];
self.nameArray = @[@"list of names"];
self.dateArray = @[@"list of dates"];
self.imageArray = @[@"list of images"];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.nameArray count];
}
- (UIView *)messageFeed:(NSIndexPath *)indexPath
{
UIView *feedView = [[UIView alloc] init];
//...feedView attributes
UILabel *nameLabel = [[UILabel alloc]initWithFrame:CGRectMake(..., ..., ..., ...)];
nameLabel.text = self.nameArray[indexPath.row];
//nameLabel attributes
UILabel *dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(..., ..., ..., ...)];
dateLabel.text = self.dateArray[indexPath.row];
//dateLabel attributes
UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(..., ..., ..., ...)];
imageView.image = [UIImage imageNamed: self.imageArray[indexPath.row]];
//imageView attributes
[feedView addSubview:nameLabel];
[feedView addSubview:dateLabel];
[feedView addSubview:imageView];
return feedView;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kTableViewCellIdentifier forIndexPath:indexPath];
// Configure the cell...
[cell addSubview:[self messageFeed:indexPath]];
return cell;
}
最佳答案
不确定这是否是最佳解决方案,但这对我有用。当我需要将 UI 字段添加到单元格 subview 时,单元格似乎并不总是 nil 为了解决这个问题,我首先检查是否设置了任何单元格标签。如果不是,我将所有 UI 字段添加回单元格 subview 。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UILabel *background;
UILabel *nameLabel;
UILabel *dateLabel;
UIImageView *imageView;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kTableViewCellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kTableViewCellIdentifier];
}
background = (UILabel *) [cell viewWithTag:1];
if (!background) {
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
background = [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 40.0f)];
background.backgroundColor = [UIColor lightGrayColor];
background.tag = 1;
[cell.contentView addSubview:background];
nameLabel = [[UILabel alloc]initWithFrame:CGRectMake(84.0f, 10.0f, 216.0f, 29.0f)];
nameLabel.textColor = [UIColor blackColor];
nameLabel.font = [UIFont boldSystemFontOfSize:20.0f];
nameLabel.tag = 2;
[cell.contentView addSubview:nameLabel];
dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(84.0f, 40.0f, 216.0f, 21.0f)];
dateLabel.textColor = [UIColor blackColor];
dateLabel.font = [UIFont systemFontOfSize:10.0f];
dateLabel.tag = 3;
[cell.contentView addSubview:dateLabel];
imageView = [[UIImageView alloc]initWithFrame:CGRectMake(20.0f, 13.0f, 56.0f, 51.0f)];
imageView.tag = 4;
[cell addSubview:imageView];
} else {
nameLabel = (UILabel *) [cell viewWithTag:2];
dateLabel = (UILabel *) [cell viewWithTag:3];
imageView = (UIImageView *) [cell viewWithTag:4];
}
nameLabel.text = self.nameArray[indexPath.row];
dateLabel.text = self.dateArray[indexPath.row];
imageView.image = [UIImage imageNamed: self.imageArray[indexPath.row]];
return cell;
}
关于ios - dequeueReusableCellWithIdentifier 不释放数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21618109/
我有一个附加了 View Controller 的 AVAudioPlayer 实例。 @property (nonatomic, retain) AVAudioPlayer *previewAudi
我是java初学者。假设我声明了一个 Account 类型的变量 Account _account = new Account("Thomas"); 然后在其他地方我做了这样的事情: _account
我在我的应用程序中使用了 3 个 UIViewController,现在我想知道当我从另一个应用程序切换到另一个 UIViewController 时释放它们是否是一个好主意。显然,这将是隐藏的,当它
我分配了一个直接缓冲区: ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024); 我读过: Deallocating Direct Buf
场景。我有一个图表,我可以使用右键单击来执行平移。这非常有效。然后我完美地添加了右键菜单。 问题。现在,即使在拖动操作完成后释放鼠标,也会显示右键菜单。 有没有办法在 Java Swing 或 Jav
我使用此代码获取 ABPerson 的姓氏 CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABP
目前,我们在基于 C 的嵌入式应用程序中使用 malloc/free Linux 命令进行内存分配/取消分配。我听说这会导致内存碎片,因为内存分配/取消分配会导致堆大小增加/减少,从而导致性能下降。其
当我尝试释放缓冲区时遇到问题。每次我尝试将缓冲区传递给释放方法时,都会发生段错误。 Valgrind 确认段错误位于 BufferDeallocate 方法中。 ==30960== Memcheck,
我想知道何时按下或释放修改后的键(Ctrl 或 Shift)。 基本上,用户可以在按下修改键的情况下执行多次击键,而我不想在它被释放之前执行一个操作(想想 Emacs 和 Ctrl + X + S).
我编写了一个相当大的网络应用程序。它运行良好一段时间,然后慢慢开始运行缓慢,因为 DOM 节点开始爬升到 80,000 - 100,000 左右。 所以我一直在 Chrome 开发工具控制台 (DCT
我知道在像 c 这样的语言中,我需要在分配内存后释放它。 (我来自 Java),对此我有几个问题: 当我在做的时候: int array[30]; (即创建一个大小为 30 个整数的数组)与
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to release pointer from boost::shared_ptr? Detach
我有一个可以从多个后台线程访问的类,可能同时访问。我无法复制该类,因为重新创建它的内容(处理或内存方面)可能很昂贵。 也有可能在后台处理仍在继续并访问该属性时替换了此类的属性。 目前我有定期的保留/释
这个问题是对: 的扩展链接-1:Creating an image out of the ios surface and saving it Link-2:Taking Screenshots fro
我有一个实例变量 NSMutableArray* searchResults。 首先,我初始化它: self.searchResults = [[NSMutableArray alloc] init]
如果我在堆上声明一些东西,比如 char *a=new char[1000] 并且主程序停止,如果没有 delete[]<,那么分配的内存会发生什么 调用?它保留在堆上还是自动释放? 最佳答案 就C+
在开发相机应用时,我遇到了一个异常,该异常仅在我切换到其他应用时发生(onPause() 用于我的应用)。 01-15 17:22:15.017: E/AndroidRuntime(14336): F
使用 JDK 1.8 编译时出现 maven 编译器错误 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (de
将 BufferedImage 保存到磁盘(以释放内存)的最快方法是什么? 我的 Java 应用程序处理大量图像(每约 300 毫秒将图像加载到内存中)。大多数这些图像都会立即被丢弃 (gc),但每隔
使用 JDK 1.8 编译时出现 maven 编译器错误 未能在项目 DUMMY 上执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:
我是一名优秀的程序员,十分优秀!