I'm looking to show a Calendar in my application, just like the iPhone Calendar application "Day" View.
The iPhone application has what looks like a Navigation Bar on the top (but doesn't perform Navigation). It has a + button to add a calendar event and possibly a left button to bring up the available calendars (if you have multiple calendars specified).
Beneath that you have The Date along with two arrows to adjust the date.
Then you have the meat of the schedule (going to use UITableView for mine).
Then you have a real button bar showing "Today" and then having the List|Day|Moth selection along with the Invitation button.
My question is how are each of these things implemented. Specifically the top toolbar, the navigation component, and the bottom toolbar..
I'm thinking that the top 2 are just UIViews with Custom Buttons on them and the bottom is a simple UIToolbar?