According to image could you please advise me which function use to develop this feature?
i’m not sure, is it implement from UIPopover?
any idea, thank you.
source from Music.app iOS 5 beta 2

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.
You can use a UIGestureRecognizer. Specifically, what you are looking for is a
UILongPressGestureRecognizerYou should instantiate one and attach it to the view you would like to track the gesture on:
Then, in your handler method you would do the rest:
EDIT: for the popover implementation, have a look at WEPopover