我想实现一个 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);
});
}
Best Answer-推荐答案 strong>
它应该确实有效,我已经为自己测试了您的代码。只需确保进度条的初始值设置为零:
progresView.Progress = 0f;
或在界面构建器/您的设计师中:
关于c# - Xamarin iOS ProgressView 没有改变,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37280246/
|