IPhone - view video in the application

Do you know how to show the camera display in my application with the navigation bar, back, forward, delete controls? Thankz: D

+1
source share
2 answers

http://three20.info/ is your best bet, I think ...

0
source

You can use UIImagePickerController:

Example:

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentModalViewController:picker animated: YES];

Remember to implement the delegate protocol.

Here is a link to Apple docs: http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

0
source

All Articles