Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 689 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 689 Bytes

LZProgressView

使用说明:


NSArray *colors = @[
                    [UIColor purpleColor],
                    [UIColor orangeColor],
                    [UIColor cyanColor],
                    [UIColor redColor],
                    [UIColor greenColor],
                    [UIColor blueColor],
                    [UIColor yellowColor]
                    ];
LZProgressView *progressView = [[LZProgressView alloc] initWithFrame:CGRectMake(0, 0, 26, 26) andLineWidth:3.0 andLineColor:colors];
progressView.center = self.view.center;
[self.view addSubview:progressView];