分组TableView选择问题

发布于 2024-10-02 08:12:45 字数 379 浏览 3 评论 0原文

好的,我有一个分组的 TableView,它具有以下重写方法:

-(NSIndexPath*)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{ 返回零; ...

很明显,禁用选择。

但!

如果用户按住一个单元格,它就会突出显示(选定)!我也需要禁用这个。

附带说明一下,我使用 tableView 来显示静态数据,几乎就像“设置”>“关于 tableView”中的“关于 tableView”一样。一般的。它只是从我手动创建的字符串数组中加载信息。

如果有更好的方式来表示数据,请告诉!

谢谢!

Ok, I have a grouped TableView that has the following overridden method:

-(NSIndexPath*)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
return nil;
}

... Obvious enough, to disable selection.

BUT!

If the user presses and holds on a cell, it gets highlighted (selected)!! I need to disable this, too.

On a side note, I am using the tableView to display static Data, almost like the About tableView in Settings > General. It just loads the info from an array of strings that I created manually.

If there is a better way to represent the data, please do tell!

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

姜生凉生 2024-10-09 08:12:45

将单元格的 selectionStyle 属性设置为 UITableViewCellSelectionStyleNone

请参阅 tableView:willSelectRowAtIndexPath: 的文档,了解为什么需要这样做,即使您表明不希望选择该单元格。

Set the selectionStyle property of the cell to UITableViewCellSelectionStyleNone.

See the documentation for tableView:willSelectRowAtIndexPath: to see why this is needed even though you're indicating that you don't want the cell selected.

夜声 2024-10-09 08:12:45

[单元格 setSelectionStyle:UITableViewCellSelectionStyleNone];

...成功了。

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

...did the trick.

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