2019-10-12 21:45:44 +02:00
|
|
|
//
|
|
|
|
// ImageViewController.swift
|
|
|
|
// NetNewsWire-iOS
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 10/12/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class ImageViewController: UIViewController {
|
|
|
|
|
2019-10-12 22:27:38 +02:00
|
|
|
@IBOutlet weak var shareButton: UIButton!
|
2019-10-12 21:45:44 +02:00
|
|
|
@IBOutlet weak var imageScrollView: ImageScrollView!
|
|
|
|
|
2019-10-14 02:41:34 +02:00
|
|
|
var image: UIImage!
|
2019-10-12 21:45:44 +02:00
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
imageScrollView.setup()
|
|
|
|
imageScrollView.imageScrollViewDelegate = self
|
|
|
|
imageScrollView.imageContentMode = .aspectFit
|
|
|
|
imageScrollView.initialOffset = .center
|
2019-10-14 02:41:34 +02:00
|
|
|
imageScrollView.display(image: image)
|
2019-10-12 21:45:44 +02:00
|
|
|
}
|
|
|
|
|
2019-10-12 22:27:38 +02:00
|
|
|
@IBAction func share(_ sender: Any) {
|
|
|
|
guard let image = image else { return }
|
2019-10-14 02:41:34 +02:00
|
|
|
let activityViewController = UIActivityViewController(activityItems: [image], applicationActivities: nil)
|
2019-10-12 22:27:38 +02:00
|
|
|
activityViewController.popoverPresentationController?.sourceView = shareButton
|
2019-10-12 23:54:24 +02:00
|
|
|
activityViewController.popoverPresentationController?.sourceRect = shareButton.bounds
|
2019-10-12 22:27:38 +02:00
|
|
|
present(activityViewController, animated: true)
|
|
|
|
}
|
|
|
|
|
2019-10-12 21:45:44 +02:00
|
|
|
@IBAction func done(_ sender: Any) {
|
|
|
|
dismiss(animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: ImageScrollViewDelegate
|
|
|
|
|
|
|
|
extension ImageViewController: ImageScrollViewDelegate {
|
|
|
|
|
|
|
|
func imageScrollViewDidChangeOrientation(imageScrollView: ImageScrollView) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func imageScrollViewDidGestureSwipeUp(imageScrollView: ImageScrollView) {
|
|
|
|
dismiss(animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func imageScrollViewDidGestureSwipeDown(imageScrollView: ImageScrollView) {
|
|
|
|
dismiss(animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|