iphone - Animate UITableViewCell with genie effect -


i'm stuck. have tableview messages. upon selection these deleted , moved trash. genie effect real easy using in controller:didchangecontent [...] case nsfetchedresultschangedelete animaties behind other cells. want on top of other cells. doing wrong?

here animation code:

[uiview beginanimations:@"suck" context:null]; [uiview setanimationtransition:103 forview:mycell cache:yes]; [uiview setanimationduration:0.5]; [uiview setanimationposition:cgpointmake(50, 710)]; [tableview deleterowsatindexpaths:[nsarray arraywithobject:indexpath] withrowanimation:uitableviewrowanimationfade]; [uiview commitanimations]; 

got idea here.

you try bringing cell front doing this:

[mycell.superview bringsubviewtofront:mycell] 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -