-1

I have made a subclass for UITableViewCell and I am implementing Subtitle TableViewCell with a thumbnail image. Following are the UITableViewCell contents: TableViewCell

The issue I am facing is when the data loads in TableViewCell, the subtitleLabel text gets hidden upto the height of the imageView. But when I select any Cell, it shows subtitleLabelText completely.

I have added the screenshot of the same for complete reference: Subtitle text for the user 'andi242' gets hidden


The UIImageView has frame = CGRectMake(0,0,40,40);

4

6 回答 6

2

尝试为单元格标题标签提供 clearColor 背景颜色 -

cell.textLabel.backgroundColor = [UIColor clearColor];
于 2013-06-05T12:41:39.173 回答
1

事实证明我使用TableViewCellstyle 作为字幕而不是custom。中的样式设置subtitle使其他标签隐藏在它们下方。多么愚蠢的小姐!

于 2013-06-05T13:32:28.303 回答
0

这是一个很棒的教程,当我尝试做你想做的事情时它帮助了我:

http://www.appcoda.com/ios-programming-customize-uitableview-storyboard/

您可以调整不同组件的大小(ImageView、TitleLabel、Subtitle,...)

于 2013-06-05T13:14:29.620 回答
0

标题标签的框架是什么?如果它的高度更大,那么它也有可能隐藏你的字幕标签

于 2013-06-05T12:48:10.027 回答
0

在您的 nib 或故事板文件中,确保标签位于子视图组件列表中的图像视图下方(位于屏幕左侧)。该列表中的第一个子视图将处于最低级别(如果它们重叠,则在每个其他子视图之后)。

于 2013-06-05T12:42:48.443 回答
0

写一行代码

 Titlelabel.backgroundcolor = [UIColor ClearColor];

因为您的标签有白色背景..并且 Titlelabel 高度太大,所以标签正在碰撞。

让我知道工作与否!!!

快乐编码!!!

于 2013-06-05T12:44:03.453 回答