스크린샷을 찍고 SNS에 공유하는 앱 기능을 구현해 봤다 [iOS 앱]
환경
・Mac Book Pro(macOS:BigSur)
・Xcode(ver:12.5)
구현 예
코드 예
ViewController.swiftclass 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
}
}
스크린 쇼를 촬영하는 버튼을 누르는 것만으로는, 잡혔는지 모르기 때문에 촬영이 끝났다는 신호를
하기 위해 토스트 디스플레이를 만들었습니다.
인터넷 정보를 보는 한, 스크린 샷 코드를 작성하는 방법은 정해진 것 같습니다.
앞으로의 앱 작성에 사용할 수 있을지도 모르기 때문에 비망록으로 기사를 만들었습니다.
Reference
이 문제에 관하여(스크린샷을 찍고 SNS에 공유하는 앱 기능을 구현해 봤다 [iOS 앱]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/swiftEnginnerY/items/fc4382f616ea4804048e
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
코드 예
ViewController.swiftclass 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
}
}
스크린 쇼를 촬영하는 버튼을 누르는 것만으로는, 잡혔는지 모르기 때문에 촬영이 끝났다는 신호를
하기 위해 토스트 디스플레이를 만들었습니다.
인터넷 정보를 보는 한, 스크린 샷 코드를 작성하는 방법은 정해진 것 같습니다.
앞으로의 앱 작성에 사용할 수 있을지도 모르기 때문에 비망록으로 기사를 만들었습니다.
Reference
이 문제에 관하여(스크린샷을 찍고 SNS에 공유하는 앱 기능을 구현해 봤다 [iOS 앱]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/swiftEnginnerY/items/fc4382f616ea4804048e
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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
}
}
Reference
이 문제에 관하여(스크린샷을 찍고 SNS에 공유하는 앱 기능을 구현해 봤다 [iOS 앱]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/swiftEnginnerY/items/fc4382f616ea4804048e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)