进度条如何与objective-c中的百分比一起使用

时间:2015-12-29 05:16:07

标签: ios iphone

进度条如何与objective-c.like中的百分比一起使用,具体取决于投票显示百分比

2 个答案:

答案 0 :(得分:2)

取值从0到1

0表示0%,1表示100%

你可以这样做

progressBar.setProgress(floatPercentage/100.0)

答案 1 :(得分:0)

您需要使用以下公式找到百分比

int totalVote,givenVote;
float percentage = givenVote * 100 / totalVote;

现在在进度条中设置此百分比

UIProgressView *progressView;
progressView.progress = (percentage / 100.0);