I have a custom table view in my app. I have implemented the \"Load More\" feature to the table which loads 25 rows at a time. The problem is after loading 2 times the app crash
For me it was caused by the toView in this code being nil:
[UIView transitionFromView:self.fromView toView:self.toView duration:0.6 options:(currentPage > toPage ? UIViewAnimationOptionTransitionCurlDown : UIViewAnimationOptionTransitionCurlUp) completion:^(BOOL finished) { if (finished) { } }