views:

248

answers:

1

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

+1  A: 

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.

Greg Martin