mirror of
https://github.com/mixpanel/mixpanel-swift
synced 2026-04-21 13:37:18 +00:00
26 lines
444 B
Swift
26 lines
444 B
Swift
//
|
|
// ViewController.swift
|
|
// MixpanelDemoMac
|
|
//
|
|
// Created by ZIHE JIA on 6/7/21.
|
|
// Copyright © 2021 Mixpanel. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import Mixpanel
|
|
|
|
class ViewController: NSViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
override var representedObject: Any? {
|
|
didSet {
|
|
// Update the view, if already loaded.
|
|
}
|
|
}
|
|
|
|
}
|