|
|
@@ -30,7 +30,7 @@ - (UIImageView *)arrowView
|
|
|
- (UIActivityIndicatorView *)loadingView
|
|
|
{
|
|
|
if (!_loadingView) {
|
|
|
- UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:self.activityIndicatorViewStyle];
|
|
|
+ UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:_activityIndicatorViewStyle];
|
|
|
loadingView.hidesWhenStopped = YES;
|
|
|
[self addSubview:_loadingView = loadingView];
|
|
|
}
|
|
|
@@ -51,7 +51,7 @@ - (void)prepare
|
|
|
{
|
|
|
[super prepare];
|
|
|
|
|
|
- self.activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;
|
|
|
+ _activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;
|
|
|
}
|
|
|
|
|
|
- (void)placeSubviews
|