I noticed from the template Apple gives with Core Data and UITableViewControllers that it puts the configureCell
method in the interface section of the .m file.
@interface CustomTableViewController ()
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath;
@end
What is the benefit of doing this? Up until now I've always just wrote custom methods but not "declared" them anywhere else in the file like Apple does above. Should I be doing that?