我正在开发一个允许用户添加图像并将其在UITextView中移动的应用程序。文本使用exclusionPaths在图像周围流动,但是如果该行的其余部分没有足够的空间而不是移至下一行,则单词将断开。
这就是我用来添加图像并为文本容器创建exclusionPaths的方法
textView.addSubview(imageview)
let imagePath = UIBezierPath(rect: imageview.frame)
textView.textContainer.exclusionPaths = imagePath
This is what is happening, notice how the words will break up to the right of the image
谢谢您的帮助!
答案 0 :(得分:0)
您能否使用imageView.bounds创建一个rect,然后尝试不确定但希望它能正常工作