[Example-BackgroundPropertySetting] Rename example project to be compatible with build script

This commit is contained in:
Adlai Holler
2016-02-18 15:23:13 -08:00
parent e9712cdfa1
commit 78c8b039ec
20 changed files with 733 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
//
// Utilities.swift
// BackgroundPropertySetting
//
// Created by Adlai Holler on 2/17/16.
// Copyright © 2016 Adlai Holler. All rights reserved.
//
import UIKit
extension UIColor {
static func random() -> UIColor {
return UIColor(red: CGFloat(drand48()), green: CGFloat(drand48()), blue: CGFloat(drand48()), alpha: 1.0)
}
}