Xamarin iOS ProgressView不会改变

时间:2016-05-17 15:20:32

标签: c# ios xamarin

我想实现一个UIProgressView,它在8秒内从0加载到100,但它可以工作。

这是我的代码。 ProgressView适用,但它会自行更新它们。我的错是什么?

public override void ViewDidAppear(bool animated)
    {
        base.ViewDidAppear(animated);

        Timer = NSTimer.CreateRepeatingScheduledTimer(TimeSpan.FromSeconds(15.0), delegate
        {
            DismissViewController(true, null);
        });

        UIView.Animate(8, () => {
            progressView.SetProgress(1.0f, true);
        });
    }

2 个答案:

答案 0 :(得分:1)

它应该可以正常工作,我已经为自己测试了你的代码。只需确保progresbar的初始值设置为零:

progresView.Progress = 0f;

或者在界面构建器/您的设计器中:

enter image description here

答案 1 :(得分:1)

我使用以下内容来做你想做的事。

将进度设为0

progressView.Progress = 0.0f;

使用带延迟和动画选项的Animate功能。

UIView.Animate (8, 0, UIViewAnimationOptions.CurveLinear,
    () => {
      progressView.SetProgress(1.0f, true);
    },
    () => {
      // animation complete action, 
      // instead of doing the delay above your animation just navigate away in here.
    }
);

我希望这会有所帮助。欢呼声。