Reputation: 3233
I am calling a UIImagePickerController to view the albums on the IPhone. The problem seems to be that when the modal slides down on cancel the seems to be a block of white padding at the top of of modal. Does anyone know how to remove this or make it clear?
Here is the code I am using but it is pretty standard.
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
//imagePicker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentViewController:imagePicker animated:NO completion:nil];
Upvotes: 0
Views: 783
Reputation: 2919
From the apple docs You cannot change the background color.
UIImagePickerController
is not intended to be modified. If you do, your app will be rejected from the app store.
A solution would be to use the third party libraries like Three20.
Upvotes: 1