Is there a way to wrap text from a UITextView around a UIImage without using CoreText?
UITextView
UIImage
CoreText
I have been playing around with attrib
This seems to do the trick:
UIBezierPath * imgRect = [UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 100, 100)]; self.textView.textContainer.exclusionPaths = @[imgRect];
Works only from iOS 7 and up.