Are there any built in, open source, or tutorials for creating a reusable easy to use popup for use with in game-help.
Essentially I would like to, on first run of a game, show popup tips / help that “point to” various on screen objects to help a user orient themselves with the game.
Update: Here is an example of how I ultimately want it to look / behave although I don’t need it that generic but as close as possible would be good
Essentially what you need is a custom view.
You cannot use Apple’s
UIAlertViewsince its purpose is very different from what you are looking for.I don’t know what are your specific needs, but you may use a simple
UILabel:where
widthandheightare the dimensions of the tip you want to show andmessageToShowis the message you want to display.You can, of course, customize your
UILabelas you like, changing font or background color. Check the reference for additional informations.EDIT:
You may take a look at a possible popover implementation for iPhone: WEPopover. On the iPad you can use directly Apple’s UIPopoverController