0

My goal is to animate every single inserted cell using the insertRowsAtIndexPaths function.
The only issue is the default animation style isn't exactly what I'm looking for - i need to create a custom one.

I've browsed stack for solutions and found some, but they are written in objC: Can you do custom animations for UITableView Cell Inserts?

I'm looking for a similar swift solution.

If anyone could share, that would be great.

Thank you.

Community
  • 1
  • 1
David Robertson
  • 1,561
  • 4
  • 19
  • 41
  • cmon guys. before giving me a minus for a question, can you at least provide a guideline. otherwise your presence on this forum is somewhat useless. – David Robertson Sep 03 '15 at 17:59

1 Answers1

-2

Try out the following code

table.insertRowsAtIndexPaths(index, withRowAnimation:UITableViewRowAnimation(rawValue: 3))

manish_kumar
  • 260
  • 2
  • 12