如何在iOS中获取uiimagepicker Spinner按钮动作?

时间:2016-05-05 06:24:30

标签: ios objective-c iphone

我使用下面的代码。

 self.picker=[[UIImagePickerController alloc] init];
 self.picker.delegate=self;
 self.picker.allowsEditing=NO; 
 self.picker.sourceType=UIImagePickerControllerSourceTypeCamera;
 self.picker.cameraOverlayView=[self addCameraRollButton];
 [self presentViewController:self.picker animated:NO completion:NULL];

如何从相机拍照而无需使用相片页面。我想留在相机视图。我无法获得相机微调器动作。我使用了自定义覆盖,但方形焦点没有来。请帮助我。我想要所有默认的相机功能。

1 个答案:

答案 0 :(得分:0)

使用自定义叠加后,您将无法看到默认的相机功能。如果您想要使用所有默认功能

self.picker.showsCameraControls = YES;

这会打开默认相机,您可以看到所有功能。 如果您想使用自定义叠加层,则需要构建所有功能。