Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
创建可拉伸的最佳方法是什么UITableViewCell?因此,例如,我想创建一个自定义UITableViewCell(我已经知道如何),但我现在不知道如何在图像周围创建自定义可拉伸边框
UITableViewCell
例如:
所以图像的高度大小不同(宽度相同)
你需要使用tableView:heightForRowAtIndexPath:方法。它允许您为每一行设置高度。只需获取图像的高度并在tableView:heightForRowAtIndexPath:方法中返回它。
tableView:heightForRowAtIndexPath:
如果你想在上面的图片上做同样的事情,你还应该UIImageView在 Interface Builder 中设置边距并禁用行分隔符
UIImageView