Class Veery
serviceConnect()
For starting Location
should be called in the AppDelegate.swift
Parameters
none
Returns
Void
Usage / Example
import Veery @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? // TODO : create the veery object let veery = Veery() func application(_ application : UIApllication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool{ //Override point for customization after application launch. // TODO : connect to veery veery.serviceConnect() return true } //.... //.... }
User interaction
none