
How can i check the time interval between loading the two cells in UITableViewCell? Please suggest.
Thanks.

You can write the the NSLog to detect the uitableviewcell loading time intervals between two cells in XCode. Just see the given lines of code for example...
NSDate *date = [NSDate date]; ... your cell loading code ... NSLog( @"Elapsed time to generate cell %.2d", [date timeIntervalSinceNow] );
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.