...
|
...
|
@@ -164,6 +164,16 @@ static float kprogressViewRadius = 2.0f; |
|
|
}
|
|
|
}
|
|
|
|
|
|
-(YHWebViewProgressView *)progressView
|
|
|
{
|
|
|
static YHWebViewProgressView *sharedProgressViewInstance = nil;
|
|
|
static dispatch_once_t predicate;
|
|
|
dispatch_once(&predicate, ^{
|
|
|
sharedProgressViewInstance = [[YHWebViewProgressView alloc] init];
|
|
|
});
|
|
|
return sharedProgressViewInstance;
|
|
|
}
|
|
|
|
|
|
- (NSMutableArray *)autoSchemes
|
|
|
{
|
|
|
if (!_autoSchemes) {
|
...
|
...
|
|