Skip to content

Instantly share code, notes, and snippets.

@gmertk
Created April 29, 2015 18:30
Show Gist options
  • Save gmertk/9fb16ae97582a87d445f to your computer and use it in GitHub Desktop.
Save gmertk/9fb16ae97582a87d445f to your computer and use it in GitHub Desktop.
AppDelegate.swift
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
Parse.enableLocalDatastore()
Parse.setApplicationId(Constants.Parse.ApplicationId, clientKey: Constants.Parse.ClientKey)
return true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment