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

Popular posts from this blog

c - CUDA code not processing if block properly -

oracle11g - get root domain from url Oracle sql regex_substr -

xcode - Swift Playground - Files are not readable -