Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone point me to an example of a program using camera on iPad 2? Preferentialy an example working in the XCode simulator.

Thanks a lot

Krzys

share|improve this question

1 Answer

up vote 2 down vote accepted

You'll need to use the UIImagePickerController, but the camera mode won't work in the Simulator. For the simulator you can use the Library Mode and then just swap to camera mode when your ready to test on the device.

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = pickerDelegate
picker.sourceType = UIImagePickerControllerSourceTypeCamera;

and then use the delegate method to access the image:

- (void)imagePickerController:(UIImagePickerController *)picker
                       didFinishPickingMediaWithInfo:(NSDictionary *)info
share|improve this answer
Thanks a lot. One more question, what should be the pickerdelegte class? – kwicher Apr 5 '11 at 23:11
Most likely you should set it to self i.e. pointing to the view controller in which its being used. – jkilbride Apr 6 '11 at 19:25
Thanks a lot it worked. – kwicher Apr 30 '11 at 10:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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