tags:

views:

19

answers:

1

Hello!

I want to make some sort of non-editable "report" view with images, titles and text in it. Images generates in code, not from bandle, so I can't use UIWebView.

User puts some data into previous view and press "done" - Next view opens with

"generated image 
 some text 
 title
 mini title
 image
 text ... " etc

I think its similar to custom UITableView + UITextView. Has anyone other suggestions?

UPD View is dynamic (not fixed) - text and images generates from code. "report" can be different length from time to time. User can scroll this "report". It's like Help screen in some applications - rich-format text with images.

A: 

I think you can use Interface Builder to build a custom UIView. Then you can put UIImageView, UITextView. This can only be done if your view is fixed, isn't it?

vodkhang
my view is not fixed - its dynamic and depends on user parametersit can be 10 mini-texts long or 15 or 20 etc...
Then you can use [view addSubview:], and initialize your view at runtime. A UITableView is also good but I am not sure if you can put it half screen
vodkhang
hmmm... I dont mentioned half screen ) see my updateUPD View is dynamic (not fixed) - text and images generates from code. "report" can be different length from time to time. User can scroll this "report". It's like Help screen in some applications - rich-format text with images.
Take a look at Three20, it is one of big library people use when they start to do something advanced UI http://three20.info/overview#UI
vodkhang