views:

33

answers:

1
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight
                           forView:[self view]
                             cache:YES];
[[self view] addSubview:self.helpView];//##
[UIView commitAnimations]; 

//This is the code i was trying for animation to commit. it does not work in //## line code. dont know what to do please help. Thanks

A: 

it may be possible that i am trying to add view on table view. can any one tell me how to animate tableview with view

Deepak