mirror of
https://github.com/zhigang1992/InTime.git
synced 2026-04-28 19:05:38 +08:00
28 lines
458 B
Swift
28 lines
458 B
Swift
//
|
|
// ViewController.swift
|
|
// FloatingToggl
|
|
//
|
|
// Created by Zhigang Fang on 10/24/17.
|
|
// Copyright © 2017 matrix. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class ViewController: NSViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
override var representedObject: Any? {
|
|
didSet {
|
|
// Update the view, if already loaded.
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|