[Solved] Drawing a bar gauge [closed]
for(int i=1;i<30;i++) { imgview=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@”imagename.png”]]; imgview.frame=CGRectMake(10+i*10, 10, 10, 20); imgview.tag=i; [self.view addSubview:imgview]; } do this loop with some animation 4 solved Drawing a bar gauge [closed]