0
ボタンを使ってビューコントローラ全体の写真を撮りたいだけです。私がやっていることは、uiviewのスクリーンショットを撮ってフォトギャラリーに保存することだと思います。私は写真のボタンが欲しい。ビュー全体のスクリーンショットを取る(swift3)
import UIKit
class ViewController: UIViewController {
@IBOutlet var x: UIButton!
var screenShot: UIImage?
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
func saveScreen() {
self.screenShot = screenshot()
print("cool")
}
func screenshot() -> UIImage {
let imageSize = UIScreen.main.bounds.size as CGSize;
UIGraphicsBeginImageContextWithOptions(imageSize, false, 0)
let context = UIGraphicsGetCurrentContext()
for obj : AnyObject in UIApplication.shared.windows {
if let window = obj as? UIWindow {
if window.responds(to: #selector(getter: UIWindow.screen)) || window.screen == UIScreen.main {
// so we must first apply the layer's geometry to the graphics context
context!.saveGState();
// Center the context around the window's anchor point
context!.translateBy(x: window.center.x, y: window.center
.y);
// Apply the window's transform about the anchor point
context!.concatenate(window.transform);
// Offset by the portion of the bounds left of and above the anchor point
context!.translateBy(x: -window.bounds.size.width * window.layer.anchorPoint.x,
y: -window.bounds.size.height * window.layer.anchorPoint.y);
// Render the layer hierarchy to the current context
window.layer.render(in: context!)
// Restore the context
context!.restoreGState();
}
}
}
let image = UIGraphicsGetImageFromCurrentImageContext();
return image!
}
@IBAction func saveUIVIEW(_ sender: Any) {
self.screenShot = screenshot()
}
}
?ボタンにスクリーンショットを入れようとしましたが、うまくいきませんでした。 –
答えを更新しました。 –
私の質問が更新されました。私のコードは実行時エラーはありませんが、写真ギャラリーには何も保存されていません。 –