标签: iphone objective-c ios
我的iPhone项目要求将图片(可能在UIImageView中)放在UITextView的某处,并且不应与文字重叠(相反,文字应显示在容纳它的图片周围) 。如果移动图像,则应重新调整文本,使其不会被剪切并重新出现在图像周围。
UIImageView
UITextView
答案 0 :(得分:2)
这称为包装。
您可能需要使用Core Text。 https://developer.apple.com/library/mac/#documentation/StringsTextFonts/Conceptual/CoreText_Programming/Introduction/Introduction.html
以前的相关问题:
https://stackoverflow.com/questions/7313156/test-wrapping-around-image-in-ios
How Can I Draw Image with Text Wrapping on iOS?