iOS: Use same color for activity view as remainder of pull to refresh view.

The spinner is otherwise invisible on the dark theme.
This commit is contained in:
Nicholas Riley 2016-02-25 16:58:17 -05:00
parent f62378d698
commit 17681ff75a

View file

@ -99,6 +99,7 @@
[self.layer addSublayer:arrowImage];
activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
activityView.color = TEXT_COLOR;
activityView.frame = CGRectMake(30.0f, frame.size.height - 38.0f, 20.0f, 20.0f);
[self addSubview:activityView];