iPhone开发 UIProgressView与计时器一起使用
来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 18:26 点击:次
-(IBAction)btnStartClick
{
proValue=0;
timer = [NSTimerscheduledTimerWithTimeInterval:0.001target:selfselector:@selector(changeProgress) userInfo:nilrepeats:YES];
}
-(void)changeProgress
{
proValue +=1.0;
if(proValue > 1500)
{
//停用计时器
[timer invalidate];
}
else
{
[proView setProgress:(proValue/1500)];
}
}
摘自 凡娃软件
相关新闻>>
- 发表评论
-
- 最新评论 更多>>