Created
May 3, 2019 13:50
-
-
Save standinga/c02ac280d19af6bf334c5f5419adcedf to your computer and use it in GitHub Desktop.
ViewController.swift from medium post about frameworks using swift and objective c
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
// 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