wxr
2020-07-06 23c075a9c27946773feccf05abc90489a6bf5203
Shared.IOS/UI/View.cs
@@ -622,7 +622,11 @@
            Parent.Remove(this);
        }
        /// <summary>
        /// 动画效果 速度
        /// 2020-06-15
        /// </summary>
        public float AnimateSpeed = 0.6f;
        Animate animate = Animate.None;
      /// <summary>
@@ -650,7 +654,7 @@
               case Animate.DownToUp:
                  frame.Y += RealView.Frame.Height;
                  RealView.Frame = frame;
                  UIView.AnimateNotify(0.6f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  UIView.AnimateNotify(AnimateSpeed, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  {
                     RealView.Frame = frameBefore;
                  }, null);
@@ -658,7 +662,7 @@
               case Animate.UpToDown:
                  frame.Y -= RealView.Frame.Height;
                  RealView.Frame = frame;
                  UIView.AnimateNotify(0.6f, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  UIView.AnimateNotify(AnimateSpeed, 0.001f, UIViewAnimationOptions.CurveLinear, () =>
                  {
                     RealView.Frame = frameBefore;
                  }, null);