When I want to create an CocoaTouch class with Xcode,and it generates an .h and .m file,what's confused me is why .m file have such code:
#import "MealTableViewController.h"
//**************below looks unnecessary
@interface MealTableViewController ()
@end
//**************above looks unnecessary
@implementation MealTableViewController
@end
In my opinion,it looks like unnecessary because I have declared this class implements MealTableViewController.h
,and even I delete it,the result will be same as before.So why this code will be generated automatically?What's the purpose of creating it? Anyone knows please teach me,thanks!