Objective Sharpie is a tool developed and maintained by Xamarin Inc, used to create C# bindings from an Objective-C library, making it consumable in Xamarin.iOS projects.
Questions tagged [objective-sharpie]
79 questions
0
votes
1 answer
Fatal error: cannot create __weak reference using Objective Sharpie
While I was trying to bind a pod to Xamarin, I ran into some errors.
I executed the following commands:
sharpie pod init ios libPusher
sharpie pod bind
But that gave me errors like this:
- (RACSignal *)rac_valuesAndChangesForKeyPath:(NSString…

vrwim
- 13,020
- 13
- 63
- 118
0
votes
2 answers
Xamarin.iOS binding for WePay
I am creating a Xamarin binding for the WePay.iOS SDK using objective sharpie. https://github.com/wepay/wepay-ios
I have managed to build the APIDefinition.cs and StructsAndEnums.cs files. However when I created the binding project, it does not…

Libin Joseph
- 7,070
- 5
- 29
- 52
0
votes
1 answer
Xamarin ios delegation
What is the correct way to use delegation pattern in Xamarin?
in API Definitions (generated by sharpie) I have protocol mapped to Interface SomeDelegate:
// @protocol SomeDelegate
[Protocol, Model]
[BaseType (typeof(NSObject))]
…

Injectios
- 2,777
- 1
- 30
- 50
0
votes
1 answer
Xamarin iOS Bindings Libraries issue with Typedefs
I'm trying to create à binding library from this project https://github.com/Eclair/CircleProgressBar.
I use sharpie to generate the ApiDefinition.cs and the .a files.
> sharpie pod init ios CircleProgressBar
> sharpie bind
I copied the .a file in…

Aktar
- 13
- 3