我想实现一个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);
});
}
答案 0 :(得分:1)
答案 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.
}
);
我希望这会有所帮助。欢呼声。