表格单元格指示符问题
在我的应用程序中,我有 UITableView
&我使用过
[cell setAccessoryType:UITableViewCellAccessoryCheckmark];
,当我滚动这个表格时,我在多个单元格中得到多个复选标记,
请帮助我..
in my application I have UITableView
& i used
[cell setAccessoryType:UITableViewCellAccessoryCheckmark];
and when I scrolled this table then I get multiple checkmark in multiple cell
please help me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,单元来自两种方式:
因为您的单元可能来自重用队列,所以它被配置。显然,您忘记重新配置来自重用队列的那些单元。
In general, the cell come from 2 ways:
Because your cell maybe come from reuse queue, it was configured. Obviously, you forget to re-configure those cells which come from reuse queue.
上使用此示例代码
您可以在 tableView 的委托方法 didSelectedRowAtIndexPath UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[单元格集选择:是动画:是];
[单元格 setAccessoryType:UITableViewCellAccessoryCheckmark];
you can use this sample code on tableView's delegate method didSelectedRowAtIndexPath
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
[cell setSelected:YES animated:YES];
[cell setAccessoryType:UITableViewCellAccessoryCheckmark];