vote up 0 vote down star

Hi,

i got a news page (a view) at my application and it has news' image and text. Text is in a UITextView and i want my text to start next to image and when the image ends continue from the down of the image, like the text is surrounding the image. i tried autoResizingMask but as i ve understood it is for the relations between subview and superview so it didnt work. Is there any way to do it ?

Thanx in advance

flag

1 Answer

vote up 0 vote down

AFAIK, UITextView doesn't support wrapping around other views. You can:

  1. Split the text into two UITextViews
  2. Use a UIWebView
  3. Do your own drawing using NSString's drawInRect or drawAtPoint methods.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.