Created
June 7, 2016 17:36
-
-
Save welbesw/f446fb3761ba9daa23797eb452b9a3a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
override init() { | |
super.init() | |
//Setup the SalesforceManager | |
SalesforceManager.sharedInstance.setupSDKManager() | |
} | |
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
// Override point for customization after application launch. | |
//Launch the salesforce SDK | |
SalesforceManager.sharedInstance.launch() | |
return true | |
} | |
//.. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment