Skip to content

Instantly share code, notes, and snippets.

View stepharr's full-sized avatar

Stephon Harris stepharr

  • Atlanta Ga
View GitHub Profile
@stepharr
stepharr / notifications.swift
Created October 4, 2015 23:06 — forked from kristopherjohnson/notifications.swift
Swift snippets for local and remote notifications
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
registerNotificationTypes()
return true
}
func registerNotificationTypes() {
let types: UIUserNotificationType = .Badge | .Sound | .Alert;