Skip to content

Instantly share code, notes, and snippets.

@standinga
Created May 3, 2019 13:50
Show Gist options
  • Save standinga/c02ac280d19af6bf334c5f5419adcedf to your computer and use it in GitHub Desktop.
Save standinga/c02ac280d19af6bf334c5f5419adcedf to your computer and use it in GitHub Desktop.
ViewController.swift from medium post about frameworks using swift and objective c
// ViewController.swift
import Cocoa
import TestFramework
class ViewController: NSViewController {
override func viewDidLoad() {
super.viewDidLoad()
let testFrameworkSwift = TestsFrameworkSwift()
print(testFrameworkSwift.fromTestFrameworkSwift())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment