Skip to content

Instantly share code, notes, and snippets.

View KimDarren's full-sized avatar
🎯
Focusing

Taejun Kim KimDarren

🎯
Focusing
View GitHub Profile
@KimDarren
KimDarren / UIColor+Decimal.swift
Created May 6, 2017 02:25
Convert decimal to UIColor in Swift.
// Usage: UIColor(decimal: -6926516)
import Foundation
extension UIColor {
convenience init(decimal c: Int) {
let red = CGFloat((c>>16) & 0xFF) / CGFloat(255)
let green = CGFloat((c>>8) & 0xFF) / CGFloat(255)
let blue = CGFloat((c>>0) & 0xFF) / CGFloat(255)
@KimDarren
KimDarren / apns-format.json
Last active October 15, 2015 02:49
Playwings APNS format
{
"aps" : {
"alert" : "ALERT MESSAGE",
"badge" : 9
"sound": "default"
},
"dealId" : 170
}