소스 검색

don't show copy to clipboard option

cyberta 3 년 전
부모
커밋
41dafb4dd4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      deltachat-ios/Controller/DocumentGalleryController.swift

+ 1 - 1
deltachat-ios/Controller/DocumentGalleryController.swift

@@ -205,7 +205,7 @@ extension DocumentGalleryController {
 
         let objectsToShare = [fileURL] as [Any]
         let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
-        activityVC.title = "Hello World!"
+        activityVC.excludedActivityTypes = [.copyToPasteboard]
         self.present(activityVC, animated: true, completion: nil)
     }
 }