iPhone SDK: Creating a menu
I'm developing a few arcade games开发者_StackOverflow中文版. Unfortunately, all of them lack a menu. What's the best way to create a menu for an iPhone game?
I think you want a grouped style UITableView with a custom header/footer. You can also customize the UITableViewCell as well.
Check out this link, he creates the menu you are looking for fairly easily: http://iosdevelopertips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html.
I would create a custom class that inherits from a UIView. Just make the UIView as big as the screen when you load it and bring it to the front. Then you can customize your screen and make it look good rather than boring and tasteless like the one above.
精彩评论