fields ios uiimageview uitextview textwrapping nsattributedstring

ios - fields - Envolviendo texto en una UITextView alrededor de un UIImage SIN texto CoreText



text field ios 11 (2)

¿Hay alguna manera de ajustar el texto de una UITextView alrededor de un UIImage sin utilizar CoreText ?

He estado jugando con cadenas atribuidas sin mucha suerte, y CoreText simplemente parece extremadamente complicado, así que preferiría no CoreText eso.


Esto parece hacer el truco:

UIBezierPath * imgRect = [UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 100, 100)]; self.textView.textContainer.exclusionPaths = @[imgRect];

Funciona solo desde iOS 7 en adelante.