I have an iOS framework I'm trying to generate Xamarin bindings for.
Up until now it's always worked fine, but I've now added a new method which returns a SecKey (from Security.framework).
Sharpie generated the following:
[Export("key")]
unsafe SecKeyRef *Key { get; }
However, this doesn't compile as it can't find SecKeyRef, and there are various recommendations that this should actually be changed to:
[Export("key")]
SecKey Key { get; }
Having now changed this, SecKey is clearly being picked up correctly as a symbol, but I'm getting BI1078 "Do not know how to make a signature for Security.SecKey.
This appears to be identical to the issue reported in the very last post of this thread:
https://forums.xamarin.com/discussion/104161/failing-to-bind-to-securityinterface-framework
Any assistance would be much appreciated! Thanks