UITableView 和 UIPickerView 交互问题

Posted

技术标签:

【中文标题】UITableView 和 UIPickerView 交互问题【英文标题】:UITableView and UIPickerView interaction issues 【发布时间】:2011-10-07 01:40:09 【问题描述】:

我有一个由三行组成的 UITableView - 每行都是设置屏幕中的一个数据字段。当用户单击一行时,我会出现一个UIPickerView 供他们选择一个值。我正在使用UITableViewCellStyleValue1 - 左侧是数据字段的名称,右侧 (detailTextLabel) 应该是从选择器中选择的值。

我创建了一个 targetCell ivar 来保存选定的单元格。在我的选择器中,我在 didSelectRow 方法中使用以下代码:

    self.targetCell.detailTextLabel.text = @"TEST";

这很有效,但是我有几个表现问题。首先是 detailTextLabel 文本是白色的(尽管 API 说它应该是蓝色的??!?)我用以下方法解决了这个问题:

    self.targetCell.detailTextLabel.textColor = [UIColor blackColor];

但是,在我单击单元格或其他单元格之前,文本不会出现在单元格中。所以我尝试添加一个 [self.tableView reloadData]; 刷新单元格并显示标签文本的技巧,但也删除了我想要维护的蓝色突出显示。

如果您可以查看此代码并告诉我在选择器上选择值时获得以下结果的最简单方法:

单元格detailTextLabel.text 立即更新为选定的 黑色值 活动单元格上的蓝色突出显示保持不变

谢谢!

- (void)pickerView:(UIPickerView *)pickerView didSelectRow: (NSInteger)row inComponent:(NSInteger)component  
    // Handle the selection 
    self.targetCell.detailTextLabel.textColor = [UIColor blackColor];
    self.targetCell.detailTextLabel.text = @"TEST";
    [self.tableView reloadData];
 

编辑添加最终代码解决方案:

感谢 chown 的回答 - 我的最终工作代码是:

- (void)pickerView:(UIPickerView *)pickerView didSelectRow: (NSInteger)row inComponent:(NSInteger)component  
    // Handle the selection 
    self.targetCell.detailTextLabel.textColor = [UIColor blackColor];
    self.targetCell.detailTextLabel.text = @"TEST";
    NSIndexPath *path = [self.tableView indexPathForSelectedRow];
    [self.tableView reloadData];
    [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:path.row inSection:0] animated:NO scrollPosition:UITableViewScrollPositionNone];
 

【问题讨论】:

只是一个注释,但是在表格单元格中设置文本不会给您任何持久性 - 您通常会更新您用作表格数据源的任何内容,然后调用 reloadData。跨度> +1 @jrturton - 在这种情况下,当用户退出屏幕时,这些值会保存到 nsuserdefaults 中,因此考虑了持久性 - 但请记住这一点! 【参考方案1】:

试试这个:

- (void)pickerView:(UIPickerView *)pickerView didSelectRow: (NSInteger)row inComponent:(NSInteger)component  
    // Handle the selection 
    self.targetCell.detailTextLabel.textColor = [UIColor blackColor];
    self.targetCell.detailTextLabel.text = @"TEST";
    [self.tableView reloadData];
    NSIndexPath *ip = [tableView indexPathForSelectedRow];

    // assuming self is the tableViews delegate.  Optional
    [self tableView:tableView willSelectRowAtIndexPath:ip];

    [tableView selectRowAtIndexPath:ip animated:YES scrollPosition:UITableScrollPositionTop];

    // assuming self is the tableViews delegate.  Optional
    [self tableView:tableView didSelectRowAtIndexPath:ip];
 

【讨论】:

这项工作的机制,但 indexPathForRow 中的行 == pickerView 的选定行,而不是 targetCell 的行 #... 我可以将 targetCell 的 indexPath.row 存储在另一个 ivar 中,但必须有一个更简单的方法?感觉我在这里错过了一些非常简单的东西...... 在这种情况下,如果您想保留当前选定的行,请更改为:NSIndexPath *ip = [tableView indexPathForSelectedRow; 或查看我的更新答案。 酷,NSIndexPath *ip = [tableView indexPathForSelectedRow];为我做的......我正在用我使用的最终代码更新我的问题......虽然我不得不问 - 有没有更简单的方法? 不是真的,我在代码的几个地方也使用了同样的方法。如果我确实找到了更好的方法,我会在这里更新。我希望重新加载表格并没有删除单元格突出显示:/

以上是关于UITableView 和 UIPickerView 交互问题的主要内容,如果未能解决你的问题,请参考以下文章

UIPickerView 弹出窗口

UITableView backgroundColor 和 UITableView.appearance

UIView 与 UITableview 和 UIImageview,使用 reloadData 访问 UITableview

UITableView 和 numberOfRowsInSection 崩溃

核心数据、UITableView 和 UISegmentedControl

UITableView 中的 UITableView,填充了字符串和数组的 JSON 数组 [关闭]