2

是否可以更改 UIImagePickerController 的 UIButtons 的默认操作。即(取消、使用、重拍等)?

例如,在我拍照并点击“使用”后,我会被带到相册视图控制器。我可以将其设置为仅重新加载 UIImagePickerController 吗?

4

1 回答 1

1
UIView *newOverlay = [[UIView alloc] init];
UIButton *newButton = [UIButton buttonWithType:UIButtonTypeCustom];
newButton.frame = CGRectMake(20,40,70,40);
[myButton addTarget:self 
         action:@selector(yourAction:) 
forControlEvents:UIControlEventTouchUpInside];
[newOverlay addSubview:newButton];

picker.cameraOverlayView = newOverlay;

只需继续向您的 newOverlay 添加按钮并设置操作!

于 2013-08-26T23:04:33.570 回答