Objective C:视图加载时如何突出显示表视图中的第一个单元格?
我试图在子视图出现时默认突出显示表视图中的顶部单元格。
我尝试这样做:
switch(indexPath.row) { // assuming there is only one section
case 0:
cell.textLabel.text = @"First Cell:";
cell.highlighted = YES
break;
但这不起作用,因为我在第一个单元格上覆盖了黑色。
编辑(添加屏幕截图)
对此的任何建议将不胜感激!
谢谢
甄
I am trying to default the top cell in my table view to be highlighted whenever the subview appears.
I tried to do this:
switch(indexPath.row) { // assuming there is only one section
case 0:
cell.textLabel.text = @"First Cell:";
cell.highlighted = YES
break;
But this doesn't work as I get a black overlay on my first cell instead.
EDIT (added screenshot)
Any advise on this will be greatly appreciated!
Thanks
Zhen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了完全相同的问题。您需要将代码移至 willDisplayCell,而不是 cellForRowAtIndexPath。
I had the exact same problem. You need to move your code into willDisplayCell, instead of cellForRowAtIndexPath.
我认为你需要的是,
如果你想要它动画,你可以使用,
I think what you need is,
If you want it animated you can use,