vote up -1 vote down star
3

Hi all

i have implemented the code for the picking up a photo by a camera in using the sdk 2.2.1 but as apple to do it all in 3.0 but it works in the 2.2.1 but not work in the 3.0 what shuld be the reason even no API difference is there between those

the code i have been used for it is

- (IBAction)getCameraPicture:(id)sender {
UIImagePickerController *picker =
[[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsImageEditing = YES;
picker.sourceType = (sender == takePictureButton) ?
UIImagePickerControllerSourceTypePhotoLibrary:UIImagePickerControllerSourceTypeCamera;

UIImagePickerControllerSourceTypeSavedPhotosAlbum:
[self presentModalViewController:picker animated: YES];
[picker release];
}

Thanks for any suggestion .

Balraj Verma

flag

0% accept rate
So what happens when you run your code? It's not clear from your question what kind of problem you're having. – Mark Bessey Jul 2 at 20:04

1 Answer

vote up 3 vote down

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; 
    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.