gpt4 book ai didi

iphone - 允许 UIImagePickerController 编辑视频而不是图像

转载 作者:可可西里 更新时间:2023-11-01 03:21:37 24 4
gpt4 key购买 nike

Whatsapp 中上传图片或视频,似乎使用了 UIImagePicker

可以在该 View 中编辑视频,但无法编辑图像。似乎在 SDK 中, allowsEditing 属性确定是否允许对图像和视频进行编辑。

我怎样才能获得像 Whatsapp 这样的行为,其中可以编辑视频但不能编辑图像?

最佳答案

我能够通过监听来自选择器的通知来实现此功能。在 ViewDidLoad 中注册

  [[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(imageCaptured:)
name:@"_UIImagePickerControllerUserDidCaptureItem" object:nil];

决定何时允许编辑

   - (void) imageCaptured:(NSNotification *)notification
{
if (self.pickerController.cameraCaptureMode == UIImagePickerControllerCameraCaptureModeVideo) {
self.pickerController.allowsEditing = YES;
}
else{
self.pickerController.allowsEditing = NO;
{
}

关于iphone - 允许 UIImagePickerController 编辑视频而不是图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7926259/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com