xcode swift如何在图像周围包装文本

时间:2017-06-02 15:52:15

标签: swift xcode tableview

如何在tableview中的图像周围换行文本。下面是带有图像和文本的tableview的示例,我希望将文本换行到图像的侧面和下面。

enter image description here

1 个答案:

答案 0 :(得分:4)

使用UITextView,

cell.layoutIfNeeded()
let imageFrame = UIBezierPath(rect: cell.imageView.frame)
cell.textView.textContainer.exclusionPaths = [imageFrame]