Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to open camera in iphone app...Like using imagepickerview we can open the library..how to open the camera app so that we can take picture..

share|improve this question

2 Answers

You need to use UIImagePickerController.

picker.sourceType = UIImagePickerControllerSourceTypeCamera;

You have to implement the UIImagePickerControllerDelegate method imagePickerController:didFinishPickingMediaWithInfo: and then store the UIImage to wherever you want, with whatever file name you want, using NSFileManager methods.

share|improve this answer
how to open camera in that ...can you post some sample code... – Kuldeep Sidhu Jan 27 '11 at 5:12
read the documentation, it contains sample codes – KingofBliss Jan 27 '11 at 5:15
one more question..how can we upload images/audio/video to server in iphone..?can you give any helpful links....? – Kuldeep Sidhu Jan 27 '11 at 5:17
@kuldeep convert them to NSData and then upload to server – KingofBliss Jan 27 '11 at 5:18
1  
@kuldeep check this stackoverflow.com/questions/936855/… – KingofBliss Jan 27 '11 at 5:21
show 1 more comment
picker.sourceType = UIImagePickerControllerSourceTypeCamera;

this code will trigger device camera..

share|improve this answer
- (IBAction)grabImage:(id)sender{ UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.allowsEditing = YES; picker.sourceType = UIImagePickerControllerSourceTypeCamera; [self presentModalViewController: picker animated:YES]; [picker release]; } – nik Jan 27 '11 at 5:14
one more question..how can we upload images/audio/video to server in iphone..?can you give any helpful links....? – Kuldeep Sidhu Jan 27 '11 at 5:16
@kuldeep convert them to NSData and then upload to server – KingofBliss Jan 27 '11 at 5:17
any sample code...i am new to iphone development.. – Kuldeep Sidhu Jan 27 '11 at 5:18
can you be more specific, bcoz we can upload it by querying alos.. – nik Jan 27 '11 at 5:23

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.