스크린샷을 찍고 SNS에 공유하는 앱 기능을 구현해 봤다 [iOS 앱]

8259 단어 Xcode스크린샷
이번에는 스크린 샷을 찍고 SNS에 공유 할 수있는 기능을 만들어 보았으므로 출력하려고합니다.

환경



・Mac Book Pro(macOS:BigSur)
・Xcode(ver:12.5)

구현 예





코드 예



ViewController.swift
class ViewController: UIViewController {

    @IBOutlet weak var screenShotConfirm: UIImageView!
    var screenShotImage:UIImage!
    override func viewDidLoad() {
        super.viewDidLoad()
    }


    @IBAction func takeScreenShot(_ sender: Any) {

        let width = CGFloat(UIScreen.main.bounds.width)
        let height = CGFloat(UIScreen.main.bounds.height / 1.3)
        let size = CGSize(width:width,height:height)

        UIGraphicsBeginImageContextWithOptions(size, false, 0.0)
        "viewに書き出す"
        self.view.drawHierarchy(in: view.bounds, afterScreenUpdates: true)
        screenShotImage = UIGraphicsGetImageFromCurrentImageContext()!
        UIGraphicsEndImageContext()

       showToast()

    }
    @IBAction func share(_ sender: Any) {
        let item = [screenShotImage!] as [Any]
        let activityVC = UIActivityViewController(activityItems: item, applicationActivities: nil)

        present(activityVC, animated: true, completion: nil)
    }

    "トースト表示を作成"
    func showToast(){
        let toastLabel = UILabel()
        toastLabel.frame = CGRect(x:40, y: UIScreen.main.bounds.height - 58, width: 300, height: 40)
        toastLabel.text = "スクリーンショットを撮りました。"
        toastLabel.layer.borderWidth = 1.0
        toastLabel.textAlignment = .center
        toastLabel.layer.borderColor = #colorLiteral(red: 0.9254902005, green: 0.2352941185, blue: 0.1019607857, alpha: 1)
        toastLabel.layer.backgroundColor = #colorLiteral(red: 0.9254902005, green: 0.2352941185, blue: 0.1019607857, alpha: 1)
        toastLabel.layer.cornerRadius = 10
        toastLabel.textColor = .white
        self.view.addSubview(toastLabel)

        UIView.animate(withDuration: 2.5){
            toastLabel.alpha = 0.0
        }

        return
    }
}

스크린 쇼를 촬영하는 버튼을 누르는 것만으로는, 잡혔는지 모르기 때문에 촬영이 끝났다는 신호를
하기 위해 토스트 디스플레이를 만들었습니다.

인터넷 정보를 보는 한, 스크린 샷 코드를 작성하는 방법은 정해진 것 같습니다.
앞으로의 앱 작성에 사용할 수 있을지도 모르기 때문에 비망록으로 기사를 만들었습니다.

좋은 웹페이지 즐겨찾기