From 7167334c0e89dd84827d59e726123d14776e3a09 Mon Sep 17 00:00:00 2001
From: 陈嘉乐 <cjl@hdlchina.com.cn>
Date: 星期二, 16 六月 2020 11:14:13 +0800
Subject: [PATCH] 2020-06-16-1

---
 Shared.IOS/UI/View.cs |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/Shared.IOS/UI/View.cs b/Shared.IOS/UI/View.cs
index 4d90fe0..79508f5 100644
--- a/Shared.IOS/UI/View.cs
+++ b/Shared.IOS/UI/View.cs
@@ -18,9 +18,6 @@
 	{
         ~View()
         {
-#if DEBUG
-            System.Console.WriteLine("=====" + GetType() + " " + Name);
-#endif
             if (this is ViewGroup)
             {
                 var viewGroup = this as ViewGroup;
@@ -650,7 +647,7 @@
 					case Animate.DownToUp:
 						frame.Y += RealView.Frame.Height;
 						RealView.Frame = frame;
-						UIView.AnimateNotify(0.6f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
+						UIView.AnimateNotify(0.2f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
 						{
 							RealView.Frame = frameBefore;
 						}, null);
@@ -658,7 +655,7 @@
 					case Animate.UpToDown:
 						frame.Y -= RealView.Frame.Height;
 						RealView.Frame = frame;
-						UIView.AnimateNotify(0.6f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
+						UIView.AnimateNotify(0.2f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
 						{
 							RealView.Frame = frameBefore;
 						}, null);

--
Gitblit v1.8.0