I've never done this before, but I would try to put a UIView (I'll call it UIBubbleView) on top of all my views.
- RootView
- UIBubbleView
- UIRootNavigationView
- Any other UIViews
The UIBubbleView will display all the bubbles. Whenever you want to put a bubble on top of your actual view, you just call the UIBubbleViewController (I would implement this controller as a Singleton for convenience with a reference in your main AppDelegate) to display the Bubble for tutorial part.
As you want to display the bubble only once you set a property to not show this specific bubble anymore. If all bubbles are shown (or the user disabled the tutorial function) you never return the instance of your UIBubbleViewController and release the actual UIViewController with its UIView (or never create it on startup).
Benefits of this approach:
- You get only one function call for each tutorial bubble
- You can call the tutorial bubbles from anywhere in you app
- You can store all tutorial data (where is the bubble, it's text, has been shown?) in one
place/file
Though it might be tricky to get the initial setup run.