| | |
| | | [Export("selectCountryCodeBlock", ArgumentSemantic.Copy)] |
| | | selectCountryCodeBlock SelectCountryCodeBlock { get; set; } |
| | | } |
| | | |
| | | // typedef void (^SortSelectionBlock)(NSString * _Nonnull); |
| | | delegate void SortSelectionBlock(string arg0); |
| | | |
| | | // @interface JLSortSelectionViewController : UIViewController |
| | | [BaseType(typeof(UIViewController))] |
| | | interface JLSortSelectionViewController |
| | | { |
| | | // @property (copy, nonatomic) SortSelectionBlock _Nonnull sortSelectionBlock; |
| | | [Export("sortSelectionBlock", ArgumentSemantic.Copy)] |
| | | SortSelectionBlock SortSelectionBlock { get; set; } |
| | | |
| | | // @property (copy, nonatomic) NSDictionary * _Nonnull sortedNameDict; |
| | | [Export("sortedNameDict", ArgumentSemantic.Copy)] |
| | | NSDictionary SortedNameDict { get; set; } |
| | | |
| | | // @property (copy, nonatomic) NSString * _Nonnull titleStr; |
| | | [Export("titleStr")] |
| | | string TitleStr { get; set; } |
| | | } |
| | | |
| | | } |
| | | |