UITableView滚出屏幕时清除单元格值

发布于 2024-12-02 19:53:30 字数 982 浏览 0 评论 0原文

我有从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

述情 2024-12-09 19:53:30

上面的代码完全没问题。我在我的代码中发现了错误。我将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文