ios - transform UITableView cell under other cells -


i have idea animate/transform uitableview cell under others, did animation can imagine how mean that...

enter image description here

is possible? try transform cell, allways goes on others cells when use

cell.transform = cgaffinetransformmaketranslation(0, 100); 

is possible want? reply!

why don't use custom cell?

you need implement uitableviewcell class, , draw assets using

 - (void)drawrect:(cgrect)rect 

this article can you: http://www.appcoda.com/customize-table-view-cells-for-uitableview/

when done, can add simple animation redraw cell:

 [uiview animatewithduration:0.5f animations:^{       //your new custom view    } completion:^(bool finished) {    } 

Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -