Camera Filters in ios7
- by Muhannad Dasoqie
How I can use the camera filters that already exist in iOS7?
If i used this code:
UIImagePickerController *picker= [[UIImagePickerController alloc]init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentModalViewController:picker animated:YES];
the camera will open, and I can capture a photo but without using the filters.
my question is: can I use the exist filters in camera view in iOS7?