ios - transform UITableView cell under other cells -
i have idea animate/transform uitableview cell under others, did animation can imagine how mean that...
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
Post a Comment