From e6ecfbf5aa4cf8b35d3945954c3c21b95fa85d58 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期五, 14 五月 2021 09:42:23 +0800 Subject: [PATCH] 2021-05-14 1.改回第一行也显示标题 --- Shared.IOS.JLCountryCode/ApiDefinition.cs | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/Shared.IOS.JLCountryCode/ApiDefinition.cs b/Shared.IOS.JLCountryCode/ApiDefinition.cs index ca4733d..db61d35 100644 --- a/Shared.IOS.JLCountryCode/ApiDefinition.cs +++ b/Shared.IOS.JLCountryCode/ApiDefinition.cs @@ -17,5 +17,26 @@ [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; } + } + } -- Gitblit v1.8.0