I need my idea to have a black lower and upper stripes when shooting. I want it to look like this:
http://imgur.com/Qdbp6fP
It’s actually that I have my code on my iPhone 5 running iOS 7. But when I compiled my code on the iPhone 4S (iOS 7 too), the bottom panel becomes transparent - the view becomes a camera from top to bottom, like a camera application now. Even the "Take Picture" button becomes transparent, like Snapchat. I hate this. What setting do I need to change so that the bottom panel becomes opaque on my iPhone 4S? I use autorun.
This is in my view of DidAppear:
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
{
self.anImagePickerController = [UIImagePickerController new];
self.anImagePickerController.delegate = self;
self.anImagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
self.anImagePickerController.showsCameraControls = YES;
[self presentViewController:self.anImagePickerController animated:NO completion:Nil];
}