0

The main problem is that it does not respect the design done in the storyboard. The coordinates of the image and the labels are as a basic cell. Note that such attributes are observed as the alignment of the label.

The button that has been added, is below the label. screenshot xCode UITableViewCell vs StoryBoard

4

1 回答 1

1

我之前肯定见过这个问题,我相信这是因为 imageView 和 textLabel 是 UITableViewCell 的属性,layoutSubviews 的默认实现是用 UITableViewCell 的默认值覆盖故事板的布局。

尝试覆盖 layoutSubviews,或提供您自己的图像和标签属性(命名与 UITableViewCell 不同,即:myImageView 和 myTextLabel)。

于 2013-06-27T19:51:18.653 回答