Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

will like to know if there is any tutorial to teach me how to create a popup view in iphone.

i need to create a tableview, on tap on the cell, it will pop up a view with more information

which looks like this

enter image description here

share|improve this question

2 Answers

up vote 2 down vote accepted

The call you're looking for is:

[myTableController.view addSubview:popupView];

Create the popupView and load it first, of course!

share|improve this answer

It is a custom UIView laid over the original view.

use core animation and write one?

- (void)animate{

[UIView animateWithDuration:5.0

                            animations:^{ 
                              //animations here
                         }

                           completion:^(BOOL  completed){
                              //cleanup here
                        }
 ];
share|improve this answer
do u know how the animation behind it ? – Desmond Mar 16 '12 at 4:18
edited my original post. – PRNDL Development Studios Mar 16 '12 at 11:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.