How to create UIPopOverControllerone that looks like this:
UIPopOverController
Is this regular UIViewor some form UIPopOverController?
UIView
In iOS 5, you can now subclass UIPopoverBackgroundViewand override popoverBackgroundViewClassyours UIPopoverController. In this way, you can achieve what you see in the figure. Without having to reinvent the wheel to deal with the user view and have the right position.
UIPopoverBackgroundView
popoverBackgroundViewClass
UIPopoverController
As far as I can tell, this is just a custom UIView, with a background image, a layer that creates a shadow, and some children on it. This is actually not so difficult to do, so go ahead.