我的应用程序中有一个进度条显示百分比值。
progressView = [[DDProgressView alloc] initWithFrame:CGRectMake(20.0f, 140.0f, self.view.bounds.size.width - 40.0f, 0.0f)];
[progressView setOuterColor:[UIColor grayColor]];
[progressView setInnerColor:[UIColor lightGrayColor]];
[self.view addSubview:progressView];
[progressView release];
float randomPercentageFloat = 40;
progressView.progress = randomPercentageFloat / 100;
这显示了一个已满 40% 的进度条。我想让进度条显示来自 php 的值。我有一个回显一个值的 php 文件。我想将其更改randomPercentageFloat = 40;
为类似
float randomPercentageFloat = "www.website.com/value.php";
这可能吗?怎么做到呢?