I want to draw text just like the following style -- the image is always on the top right corner, and the text is around the image.

enter image description here

Could anyone tell me how to implement this on iOS? Do I need to use Core Text?

Thanks in advance!

link|improve this question

69% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Yes, CoreText is the best way to do this. The code to do it is a little long to post here. Some code that may point you in the right direction is in the article "Clipping a CGRect to a CGPath." If the process for doing it is still confusing, ping me and I finally write the blog post I've been meaning to write on the subject.

link|improve this answer
I think I need your help. I don't quite understand the code in your blog post. Could you please write an article on this subject? Thank you! – nonamelive Mar 13 '11 at 7:22
Haven't forgotten about this; it's just taken a bit to put it together. – Rob Napier Mar 25 '11 at 15:42
1  
It's a bit rough, but hopefully it'll get you moving in the right direction. robnapier.net/blog/wrapping-text-around-shape-with-coretext-540 – Rob Napier Mar 25 '11 at 16:27
feedback

Your Answer

 
or
required, but never shown

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