iPhone SDK - 突出显示 TableView 中选定的单元格
我在 tableView 中有一个 customTableViewCell 。 选择时突出显示单元格
我在使用cell.selectionStyle = UITableViewCellSelectionStyleBlue;
,但是,tableView 看起来如下图所示。
它隐藏了 customCell 中的标签和文本。我只想简单地突出显示单元格,而不隐藏背景图像和标签。我不知道我在哪里犯了错误,无论是在代码中还是在IB中。 。
I have a customTableViewCell in a tableView. I am highlighting the cell when selected using,
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
But, the tableView appears like the following image.
It hides the labels and text in the customCell. I just want to highlight the cell simply without hiding the background image and labels. I do not know where I am making the mistake, whether in code or IB. .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这会工作得很好
this will work fine
嘿,我认为您需要将 customCell 中的标签和文本添加到 cell.contentview 中。如需参考,请参阅 Apple 开发人员文档。
http://developer.apple.com/library/ios/#DOCUMENTATION/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html#//apple_ref/doc/uid/TP40007451-CH7
Hey i think you need to add labels and texts in the customCell to cell.contentview. For reference go to Apple developer document.
http://developer.apple.com/library/ios/#DOCUMENTATION/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html#//apple_ref/doc/uid/TP40007451-CH7
将其放入查看 Will Appear 及其对我的作品,
也将其放入 .h 文件
put this in to view Will Appear and its works for me ,
also put this to .h file too
试试这个
Try this