UITableViewCell 内的 UITextField 在滚动时被擦除
我在分组的 UITableView 中有一个小表单(5 个字段)。每个 UITextField 都位于 UITableView 单元格内。单击文本字段时,它会调出键盘,然后您可以将某些单元格滚动到视图之外,当您将它们拉回时,它们的内容将被删除。
我是否正确地假设它们已被重新绘制,因此它们的内容消失了?如果是这样,防止这种情况的最佳方法是什么?由于我只有 5 个字段,当单元格滚动回视图时是否必须重新绘制单元格?
我正在重复使用细胞:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
}
I have a small form (5 fields) in a grouped UITableView. Each UITextField is inside of a UITableView cell. When clicking in a textField, it brings up the keyboard, which then allows you to scroll some of the cells out of view, when you pull them back down, their content is erased.
Am I correct in assuming that they have been redrawn, so their content is gone? If so, what is the best way to prevent this? Since I only have 5 fields, do I have to redraw my cells when the are scrolled back into view?
I am reusing cells:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以拥有一个单独的文本字段数组,并实现单元格创建回调,如下所示:
You can have a separate array of you text fields and implement you cell creation callback like this: