1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
silica-viewer/ProcreateViewer/ViewController.swift

13 lines
302 B
Swift
Raw Normal View History

2020-03-10 14:23:54 -04:00
import Foundation
import Cocoa
class ViewController: NSViewController {
@IBOutlet weak var imageView: NSImageView!
override func viewWillAppear() {
let document = self.view.window?.windowController?.document as? Document
imageView.image = document?.image
}
}