1

I want to bind some objective-c code using sharpie. I have some .h and .m files inside /Users//Documents/binding/InfColorPicker/InfColorPicker. My sharpie command looks like this sharpie bind -output=InfColorPicker -namespace=InfColorPicker -sdk-iphoneos12.2 -scope Users/<username>/Documents/binding/InfColorPicker/InfColorPicker/*.h. But the ApiDefinition.csand Struct.cs are very huge. I think it has binded all the included framework (coregraphic, foundation etc..). How do I properly set the scope to my .h files. Please help me. Thanks

Saamer
  • 4,687
  • 1
  • 13
  • 55
Randi
  • 639
  • 2
  • 6
  • 23

1 Answers1

0

If you watch this video starting at 1:02:31, presented by the Lead of the Xamarin Components team, Jonathan Dick, you will notice that in the generated files, you can delete the unwanted objects that you don't need. You can just keep the stuff that is relevant for your purposes.

Saamer
  • 4,687
  • 1
  • 13
  • 55