I declared this in my header:
#import <UIKit/UIKit.h>
@interface NFNoteCamera : UIImagePickerController
@end
and receive 27 semantic issues such as
Property ‘cameraCaptureMode’ requires method ‘cameraCaptureMode’ to be defined – use @synthesize, @dynamic or provide a method implementation in this class implementation
including ‘allowsImageEditing’, ‘allowsEditing’ and other camera featured issues. If i had to guess it was something i haven’t imported yet. Any Ideas?
as the doc says
why dont you just implement its delegate?