From d815ec427cb61fc6c82d25c6a65fca2e1766ed71 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期四, 25 三月 2021 13:48:51 +0800
Subject: [PATCH] 2021-03-25 1.UI优化

---
 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