Here we see the same subclass of NSObject
each using a different #import
statement. What difference, if any, does this make for my subclass? What difference, if any, does this make for my final compiled program?
#import <Foundation/NSObject.h>
@interface Card : NSObject
#import <Foundation/Foundation.h>
@interface Card : NSObject