mixpanel-swift/MixpanelDemo/MixpanelDemoMac/AppDelegate.swift
2025-05-29 17:45:08 -07:00

30 lines
717 B
Swift

//
// AppDelegate.swift
// MixpanelDemoMac
//
// Created by ZIHE JIA on 6/7/21.
// Copyright © 2021 Mixpanel. All rights reserved.
//
import Cocoa
import Mixpanel
@main
class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
var ADD_YOUR_MIXPANEL_TOKEN_BELOW_🛠🛠🛠🛠🛠🛠: String
Mixpanel.initialize(token: "MIXPANEL_TOKEN")
Mixpanel.mainInstance().loggingEnabled = true
Mixpanel.mainInstance().track(event: "Tracked Event")
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}