Nobik
Nobik

Reputation: 791

How can i create a uiview that looks like the view in mail.app

I need to create a uiview that looks like the one to display mails in the mail.app on iphone.

It looks, that the view is something like a UIWebView, but there is a header-view to display From, To and Subject. This header is non-zoomable and scrolls only by the y-axis.

Is there a way to create such a header-view in the UIWebView...

// sorry for bad english

Upvotes: 0

Views: 476

Answers (1)

Greg Martin
Greg Martin

Reputation: 5064

It appears to be a UITableView with a row for "From" a row for the subject and a row with a UIWebView as a subview for the message body. The "Details" button seems to reveal another row with the "To" information.

Upvotes: 3

Related Questions