标签: swift xcode tableview
如何在tableview中的图像周围换行文本。下面是带有图像和文本的tableview的示例,我希望将文本换行到图像的侧面和下面。
答案 0 :(得分:4)
使用UITextView,
cell.layoutIfNeeded() let imageFrame = UIBezierPath(rect: cell.imageView.frame) cell.textView.textContainer.exclusionPaths = [imageFrame]