Binding a Swift Library in Xamarin.iOS follows the same process for Objective-C as shown in https://developer.xamarin.com/guides/ios/advanced_topics/binding_objective-c/, but with some caveats.
A swift class must inherit from NSObject to be binded.
Swift compiler will translate class and protoco...