Here is my CameraController interface declaration:
#import <UIKit/UIKit.h>
@interface CameraController : UIImagePickerController <UIImagePickerControllerDelegate, UINavigationControllerDelegate> {
id editedObject;
NSString *mode;
BOOL movieIsAvailable;
}
@property (nonatomic, retain) id editedObject;
@property (nonatomic, retain) NSString *mode;
@property (nonatomic) BOOL movieIsAvailable;
- (id) initWithMode:(NSString *) aMode;
@end
Here is my initialization code for the camera picker controller. Initializing the album picker controller is similar. You init the controller as follows:
CameraController *cameraController = [[CameraController alloc] initWithMode:@"camera"];
or
CameraController *cameraController = [[CameraController alloc] initWithMode:@"videoCamera"];
In the following, mode is a NSString (either camera or videoCamera) and movieIsAvailable is a BOOL. You need to distinguish also between iPhone 3G (no movie support) and 3G S (which supports movies).
#define SOURCETYPE UIImagePickerControllerSourceTypeCamera
- (id) initWithMode:(NSString *) aMode
{
if (!(self = [super init]))
return self;
self.mode = [[NSString stringWithFormat:@"%@", aMode] retain];
// Set up the source
if ([UIImagePickerController isSourceTypeAvailable:SOURCETYPE])
self.sourceType = SOURCETYPE;
if([self.mode isEqualToString:@"camera"]){
//camera
self.allowsImageEditing = YES;
self.mediaTypes = [NSArray arrayWithObjects:@"public.image", nil];
}
if([self.mode isEqualToString:@"videoCamera"])
self.mediaTypes = [NSArray arrayWithObjects:@"public.movie", nil];
self.delegate = self;
[editedObject retain];
return self;
}