tags:

views:

66

answers:

1

Hello,

I am creating a ebook iPhone application and it consists of a bunch of pages.

My problem is some of the pages consists of images.

Is there a way to put the text and image in the same component.

What would be the best way to acheive this?

Thanks

A: 

You can't embed an image in a UITextField, nor the more appropriate UITextView. Consider turning your text into HTML, and using a UIWebView to display it. This would allow you to easily embed images into the text.

lemnar