Last active
May 3, 2019 13:42
-
-
Save standinga/37c479d7173547052c6baa44a65bdf2a to your computer and use it in GitHub Desktop.
TestsFrameworkSwift for medium article about frameworks using both 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
//TestsFrameworkSwift.swift | |
import Foundation | |
public class TestsFrameworkSwift { | |
public init () { } | |
public func fromTestFrameworkSwift()-> String { | |
let testFrameworkObjc = TestFrameworkObjc() | |
return testFrameworkObjc.fromTestFrameworkObjc() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment