Skip to content

Instantly share code, notes, and snippets.

@kgn
Last active March 15, 2016 23:39
Show Gist options
  • Save kgn/e1f680d30cc46760e25d to your computer and use it in GitHub Desktop.
Save kgn/e1f680d30cc46760e25d to your computer and use it in GitHub Desktop.
if let tintColor = configData["tint_color"] as? [String: CGFloat] {
if let r = tintColor["r"], g = tintColor["g"], b = tintColor["b"] {
self.window?.tintColor = UIColor(red: r, green: g, blue: b, alpha: 1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment