I'm trying to make a new CLLocation subclass. This is the skeleton:
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
@interface JFLocation : CLLocation {
}
@end
#import "JFLocation.h"
@implementation JFLocation
@end
When I build the class I'm getting this errors:
Undefined symbols:
".objc_class_name_CLLocation", referenced from:
.objc_class_name_JFLocation in JFLocation.o
ld: symbol(s) not found
Any Idea?? Thank you!!