I am creating a new framework in swift for iOS. My project structure/hierarchy is
*Client(Single View Application)
**Framework as a project
**ViewController in Client consuming Framework
I am coding completely in Swift. Earlier i used objective C, which had .h file for defining headers. But in Swift there is no interface file. How is this gap addressed in case of frameworks? And i couldn't find any tutorial describing end to end flow of creating a swift framework.
All that i want to do is to create a simple function inside a framework and expose it for accessing the same in my client's VC.
The tutorial i followed is in https://github.com/hpique/Talks/blob/master/Building%20Swift%20frameworks/Building%20Swift%20frameworks.md
But i am not able to access the function in my client's VC. The function is not exposed. Kindly share me your thoughts in case if you have experienced the same or any other detailed tutorial in Swift 2.0.