mirror of
https://github.com/joncardasis/ChromaColorPicker.git
synced 2024-11-29 11:15:55 +03:00
26 lines
533 B
Swift
26 lines
533 B
Swift
|
//
|
||
|
// ViewController.swift
|
||
|
// JCColorPicker-Demo
|
||
|
//
|
||
|
// Created by Cardasis, Jonathan (J.) on 8/11/16.
|
||
|
// Copyright © 2016 Jonathan Cardasis. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class ViewController: UIViewController {
|
||
|
|
||
|
override func viewDidLoad() {
|
||
|
super.viewDidLoad()
|
||
|
// Do any additional setup after loading the view, typically from a nib.
|
||
|
}
|
||
|
|
||
|
override func didReceiveMemoryWarning() {
|
||
|
super.didReceiveMemoryWarning()
|
||
|
// Dispose of any resources that can be recreated.
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|