#import <Foundation/Foundation.h>
@interface FaceObject : NSObject
@property (strong, nonatomic) UIImage *image;
@end
Xcode gives an error saying "unknown type name 'UIImage' unless I import UIKit.h, but in Xcode 5 i would have not gotten this error and did not need to import UIKit -- is there any explanation for this? Am I doing something wrong? Thanks!