I have a UITableView
that is populated with cells with dynamic height. I would like the table to scroll to the bottom when the view controller is pushed from view controller.
I have tried with contentOffset
and tableView scrollToRowAtIndexPath
but still I am not getting the perfect solution for exactly I want.
Can anyone please help me fix this issue?
Here is my code to scroll:
let indexPath = NSIndexPath(forRow: commentArray.count-1, inSection: 0)
tableView.scrollToRowAtIndexPath(indexPath, atScrollPosition: .Bottom, animated: true)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…