- As a solution i found that we need to transform our UITableview. So all the contents in the UItableview are transformed.
- You need to transform Cell, You need to implement header instead of footer and vice-versa.
- We need much more time to do this, so i found one library (Link is given below) using this library you can easily implement transform.
- Please Refer below code to implement the library.
import ReverseExtension
self.yourTableview.re.delegate = self
self.yourTableview.re.scrollViewDidReachTop = { scrollView in
YOUR CODE HERE
}self.yourTableview.re.scrollViewDidReachBottom = { scrollView in
YOUR CODE HERE
}