You can make your own Popup of UIView with the help of animation see this -
First add a UIView in viewDidLoad
popUpView = [[UIView alloc]init];
[popUpView setBackgroundColor:[UIColor yellowColor]];
[popUpView setFrame:CGRectMake(self.view.center.x, self.view.center.y, 10.0, 10.0)];
[self.view addSubview:popUpView];
// here popUpView is an UIView, declare globaly
// now increase view height and width with animation. on button click or cell click.
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3];
//you can change the duration it is in second
CGRect rectSize;
rectSize.origin.x=60.0;
rectSize.origin.y=60.0;
rectSize.size.height=150.0;
rectSize.size.width=250.0;
popUpView.frame=rectSize;
[UIView commitAnimations];
this is look like a popUp, and you can add a text on this as UILabelView. Please play with code for more attractive popUp. you can change origin.x and origin.y of popUpView.
and you can also download a sample code for PopUp click On me. this is a gr8 PopSample Code.
Thank You!!
tableView:heightForRowAtIndexPath:to return a different height for the selected cell, and use[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathWithIndex:yourIndex withRowAnimation:UITableViewRowAnimationFade]]]to reload the cell after it is selected to make sure the height checking method is called and the cell is updated. – PartiallyFinite Jun 9 '12 at 12:58