UIColor extension for RGB Hex in Swift
We had a great boot camp this weekend at the Dallas iOS Swift Boot Camp! One question was how to make a UIColor from a hex value. I personally think hex colors are so much easier to deal with. Here is the little gem for you in swift: import UIKit extension UIColor { class func colorWithRGBHex(hex: Int, alpha: Float = 1.0) -> UIColor { let r = Float((hex >> 16)…
Read more...Scrum: a Breathtakingly Brief and Agile Introduction
I am reading this great little book about Scrum. It has some very good information and details to help you understand Scrum and Agile Development. It also is a great refresher to remind you about the important parts and definitions. It is very cheap and totally worth the cost. Check it out Scrum: a Breathtakingly Brief and Agile Introduction.
Read more...