0

我尝试使用情节提要在 UITableViewCells 下面的 UITableView 中添加 UIButton。

但是,按钮宽度填充了整个区域。我可以使用情节提要减少 UIButton 的宽度。我必须以编程方式添加它吗?

我正在尝试激活类似于 Viber 设置中的按钮的结果,如下所示。

在此处输入图像描述

4

1 回答 1

1

By adding the UIButton directly at the end of your table view, you're making it the table view footer, and the table view footer is required to take the whole table view width.

Try replacing your UIButton with a UIView, and add the UIButton in this UIView:

View hierarchy

Storyboard appearance

于 2013-06-10T08:46:49.033 回答