10秒で10,000から0までのスコアを表示するラベルが1つあります(lblPoints)
NSTimer pointstimer=[[NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(pointstimermethod) userInfo:nil repeats:YES]retain];
-(void)pointstimermethod
{
points=points-1;
lblPoints.text=[NSString stringWithFormat:@"%d",points];
}
正確に正確に10秒で10,000から0を表示する方法を誰かに教えてもらえますか?