Photo library에서 동영상을 불러오면 동영상이 복제되는 문제

누르면 image Picker를 통해 포토 라이브러리에서 동영상을 불러오는 버튼이 있는데요,
포토라이브러리에서 원하는 영상을 선택 후,
영상 길이를 원하는 만큼 조절한 뒤 Done 버튼을 누르면
포토 라이브러리에 해당 영상이 (조절한 길이만큼)복제되어 있네요ㅠㅠ


    @IBAction func loadVideoButtonTapped(_ sender: UIButton) {
        if (UIImagePickerController.isSourceTypeAvailable(.photoLibrary)) {

            imagePicker.sourceType = .photoLibrary
            imagePicker.mediaTypes = [kUTTypeMovie as String]
            imagePicker.allowsEditing = true
            
            present(imagePicker, animated: true, completion: nil)
        } else{
            libraryAlert("Photo album inaccessable", message: "Application cannot access the photo album.")
        }
    }

좋아요 1

예제 코드에 UISaveVideoAtPathToSavedPhotosAlbum 이라는 코드가 있어서 그랬던 것으로 밝혀졌습니다…^^; 해결 했습니당

좋아요 1