I have created a Table which contain Chat. i just transfromed tableview by using
chatTable.transform = CGAffineTransform(scaleX: 1, y: -1)
I need to Make these cards(in screenshot below) to show on top when user open a chat for first time.
i tried this peice of code
chatTable.setContentOffset(CGPoint(x: 0.0, y: -chatTable.contentInset.top), animated: true)
it doesn't worked!
How to acheive that layout? need suggestions.