iOS에서 다른 앱과 공유 할 수있는 방법을 알고 검색을 시작했습니다. 두 가지 중요한 방법은
UIActivityViewController
UIDocumentInteractionController
이 방법과 다른 방법은 이 SO 답변 에서 비교됩니다 .
새로운 개념을 배우고있을 때 종종 시작하기위한 기본 예를보고 싶습니다. 기본 설정이 완료되면 나중에 좋아하는 방식으로 수정할 수 있습니다.
와 관련된 많은 SO 질문이 UIActivityViewController
있지만 간단한 예를 요구하는 것을 찾을 수 없었습니다. 방금이 작업을 수행하는 방법을 배웠으므로 아래에서 내 답변을 제공 할 것입니다. 더 나은 버전 (또는 Objective-C 버전)을 자유롭게 추가하십시오.
답변
UIActivityViewController 예제 프로젝트
두 개의 버튼으로 스토리 보드를 설정하고 뷰 컨트롤러에 연결하십시오 (아래 코드 참조).
Assets.xcassets에 이미지를 추가하십시오. 나는 “사자”라고 불렀습니다.
암호
import UIKit
class ViewController: UIViewController {
// share text
@IBAction func shareTextButton(_ sender: UIButton) {
// text to share
let text = "This is some text that I want to share."
// set up activity view controller
let textToShare = [ text ]
let activityViewController = UIActivityViewController(activityItems: textToShare, applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view // so that iPads won't crash
// exclude some activity types from the list (optional)
activityViewController.excludedActivityTypes = [ UIActivityType.airDrop, UIActivityType.postToFacebook ]
// present the view controller
self.present(activityViewController, animated: true, completion: nil)
}
// share image
@IBAction func shareImageButton(_ sender: UIButton) {
// image to share
let image = UIImage(named: "Image")
// set up activity view controller
let imageToShare = [ image! ]
let activityViewController = UIActivityViewController(activityItems: imageToShare, applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view // so that iPads won't crash
// exclude some activity types from the list (optional)
activityViewController.excludedActivityTypes = [ UIActivityType.airDrop, UIActivityType.postToFacebook ]
// present the view controller
self.present(activityViewController, animated: true, completion: nil)
}
}
결과
“텍스트 공유”를 클릭하면 왼쪽에 결과가 표시되고 “이미지 공유”를 클릭하면 오른쪽에 결과가 표시됩니다.
노트
- iOS 11 및 Swift 4에서 이것을 다시 테스트했습니다. 시간이 초과되어 작동하기 전에 시뮬레이터에서 몇 번 실행해야했습니다. 내 컴퓨터가 느리기 때문일 수 있습니다.
- 이러한 선택 중 일부를 숨기려면
excludedActivityTypes
위의 코드 와 같이 그렇게 할 수 있습니다 . popoverPresentationController?.sourceView
줄을 포함하지 않으면 iPad에서 실행될 때 앱이 중단됩니다.- 텍스트 나 이미지를 다른 앱과 공유 할 수 없습니다. 당신은 아마 그것을 원할 것
UIDocumentInteractionController
입니다.
또한보십시오
답변
공유 : 텍스트
@IBAction func shareOnlyText(_ sender: UIButton) {
let text = "This is the text....."
let textShare = [ text ]
let activityViewController = UIActivityViewController(activityItems: textShare , applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view
self.present(activityViewController, animated: true, completion: nil)
}
}
공유 : 이미지
@IBAction func shareOnlyImage(_ sender: UIButton) {
let image = UIImage(named: "Product")
let imageShare = [ image! ]
let activityViewController = UIActivityViewController(activityItems: imageShare , applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view
self.present(activityViewController, animated: true, completion: nil)
}
공유 : 텍스트-이미지-URL
@IBAction func shareAll(_ sender: UIButton) {
let text = "This is the text...."
let image = UIImage(named: "Product")
let myWebsite = NSURL(string:"https://stackoverflow.com/users/4600136/mr-javed-multani?tab=profile")
let shareAll= [text , image! , myWebsite]
let activityViewController = UIActivityViewController(activityItems: shareAll, applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view
self.present(activityViewController, animated: true, completion: nil)
}
답변
전체 화면을 공유하려면이 기능이 완벽하게 작동한다는 것을 알았습니다.
@IBAction func shareButton(_ sender: Any) {
let bounds = UIScreen.main.bounds
UIGraphicsBeginImageContextWithOptions(bounds.size, true, 0.0)
self.view.drawHierarchy(in: bounds, afterScreenUpdates: false)
let img = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
let activityViewController = UIActivityViewController(activityItems: [img!], applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view
self.present(activityViewController, animated: true, completion: nil)
}
답변
참고로 iPad에도 사용할 수 있습니다.
activityViewController.popoverPresentationController?.sourceView = sender
따라서 팝 오버는 발신자 (이 경우 버튼)에서 팝업됩니다.
답변
프로젝트의 도우미 클래스 중 하나에서 작성한 다음 기능을 사용할 수 있습니다.
그냥 전화
showShareActivity(msg:"message", image: nil, url: nil, sourceRect: nil)
iPhone과 iPad 모두에서 작동합니다. sourceRect로보기의 CGRect 값을 전달하면 iPad에도 작은 화살표가 표시됩니다.
func topViewController()-> UIViewController{
var topViewController:UIViewController = UIApplication.shared.keyWindow!.rootViewController!
while ((topViewController.presentedViewController) != nil) {
topViewController = topViewController.presentedViewController!;
}
return topViewController
}
func showShareActivity(msg:String?, image:UIImage?, url:String?, sourceRect:CGRect?){
var objectsToShare = [AnyObject]()
if let url = url {
objectsToShare = [url as AnyObject]
}
if let image = image {
objectsToShare = [image as AnyObject]
}
if let msg = msg {
objectsToShare = [msg as AnyObject]
}
let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
activityVC.modalPresentationStyle = .popover
activityVC.popoverPresentationController?.sourceView = topViewController().view
if let sourceRect = sourceRect {
activityVC.popoverPresentationController?.sourceRect = sourceRect
}
topViewController().present(activityVC, animated: true, completion: nil)
}
답변
위의 구현을 사용했으며 지금은 iOS 13을 실행하는 iPad에서 작동하지 않는다는 것을 알게되었습니다.
//avoiding to crash on iPad
if let popoverController = activityViewController.popoverPresentationController {
popoverController.sourceRect = CGRect(x: UIScreen.main.bounds.width / 2, y: UIScreen.main.bounds.height / 2, width: 0, height: 0)
popoverController.sourceView = self.view
popoverController.permittedArrowDirections = UIPopoverArrowDirection(rawValue: 0)
}
그것이 나를 위해 작동하는 방법입니다
func shareData(_ dataToShare: [Any]){
let activityViewController = UIActivityViewController(activityItems: dataToShare, applicationActivities: nil)
//exclude some activity types from the list (optional)
//activityViewController.excludedActivityTypes = [
//UIActivity.ActivityType.postToFacebook
//]
//avoiding to crash on iPad
if let popoverController = activityViewController.popoverPresentationController {
popoverController.sourceRect = CGRect(x: UIScreen.main.bounds.width / 2, y: UIScreen.main.bounds.height / 2, width: 0, height: 0)
popoverController.sourceView = self.view
popoverController.permittedArrowDirections = UIPopoverArrowDirection(rawValue: 0)
}
self.present(activityViewController, animated: true, completion: nil)
}