Hi
I'm reading the Core Data Utility tutorial from apple documentation and there's a part that's bugging me a bit.
At the beginning of "main" you got:
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#include <objc/objc-auto.h>
Why you would need to include Foundation.h if it is already included in CoreData.h? the same for objc-auto.h that is inside Foundation.h? And why in the last line is used #include?
Thank you