xamarin.ios - C# Binding for Objective-C: @property (strong, nonatomic) void (^animations)(void); -
how should declare following property:
@property (strong, nonatomic) void (^animations)(void);
in c# binding (apidefinitions.cs) ?
after having smoke became obvious :-)
outside interface:
delegate void animationsblock();
inside interface:
[export("animations")] animationsblock animations { get; set;}
Comments
Post a Comment