开发者

UIImagePickerController button

I have a problem with my PickerController.

I have a launcherView with 4 buttons. Each button opens another View.

When I open my PickerController, all works fine but when I return to my LauncherView and open my PickerController, the "Cancel" and "Take picture" buttons are not clickable.

If I click the "Change camera" button (with my iPod new generation 2 camera), buttons are clickable.

Anyone ca开发者_开发百科n help me?


Did you reference the class correctly? This is a sample to see if fixes your issue, make sure the delegate is there and allows Image Editing = YES:

    self.imagePickerController = [[UIImagePickerController alloc] init];
self.imagePickerController.allowsImageEditing = YES;
self.imagePickerController.delegate = self;
self.imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜