I need to achieve the following interface layout:

The obvious path would be a table view, but how would I do the top player and the bottom button set doing that? Embedding buttons in a table view row is a little unsightly I’d say, any suggestions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It looks like a composed hierarchy of
UIViews to me. The topmost element is a customUIViewsubclass whose subviews, in turn, are comprised of the appropriate controls. Next down, is aUIButton, then yourUITableView(does it scroll? It looks like perhaps not.) Then another row of buttons (trash, etc.)So, to summarize, your base view is just a
UIViewthat you compose with subviews, including what I assume is a groupedUITableViewin the middle. It will be easiest to layout in IB.