UITableView滚出屏幕时清除单元格值
我有从 nib 文件创建的表视图单元格。表格视图中有不同的单元格,要通过键盘获取输入,我必须在屏幕上滚动表格视图。现在的问题是,当我这样做时,我的单元格值被清除。
我知道当视图关闭并出现在屏幕上时,会重新创建单元格,但更糟糕的是,此时我的用户默认变量为空,并且我得到空文本字段。
为了确认该值仍然是用户默认值,当我重新加载应用程序时,该值会回来。
这就是我创建 tableviewcell 的方式,
else if ([indexPath row] == 4)
{
static NSString *WeeklyHoursCellIdentifier = @"WeeklyHoursCell";
WeeklyHourTableViewCell *tempTextfieldcell = (WeeklyHourTableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:WeeklyHoursCellIdentifier];
if (tempTextfieldcell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"WeeklyHourTableViewCell" owner:self options:nil];
tempTextfieldcell = calculateTextFieldTableViewCell;
self.calculateTextFieldTableViewCell = nil;
}
if ([prefs objectForKey:@"iPhoneWeeklyHours"] != nil) {
tempTextfieldcell.textField.text = [prefs objectForKey:@"iPhoneWeeklyHours"];
}
大家有什么想法吗?我真的被困在这里了。
谢谢
I have table view cell created from a nib file. There are different cells within tableview and to get input via keyboard I have to scroll tableview up the screen. Now problem is when I do that my cell value is cleared.
I know that cell is recreated when view goes off and on the screen but even worse is that my user defaults variable is null at that point and I get empty textfield.
To confirm the value is still in the user defaults, when I reload the application that value comes back.
This is how I am creating my tableviewcell
else if ([indexPath row] == 4)
{
static NSString *WeeklyHoursCellIdentifier = @"WeeklyHoursCell";
WeeklyHourTableViewCell *tempTextfieldcell = (WeeklyHourTableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:WeeklyHoursCellIdentifier];
if (tempTextfieldcell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"WeeklyHourTableViewCell" owner:self options:nil];
tempTextfieldcell = calculateTextFieldTableViewCell;
self.calculateTextFieldTableViewCell = nil;
}
if ([prefs objectForKey:@"iPhoneWeeklyHours"] != nil) {
tempTextfieldcell.textField.text = [prefs objectForKey:@"iPhoneWeeklyHours"];
}
Any idea guys. I am really stuck here.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
上面的代码完全没问题。我在我的代码中发现了错误。我将 null 分配给 [prefs objectForKey:@"iPhoneWeeklyHours"] 这是我需要避免的。
感谢大家花时间回答这个问题。
Above code is perfectly fine. I found bug in my code. I was assigning null to [prefs objectForKey:@"iPhoneWeeklyHours"] which is what I needed to avoid.
Thanks everyone for taking time to answer that.