Skip to content

Instantly share code, notes, and snippets.

View chrisvoss's full-sized avatar

Chris Voss chrisvoss

View GitHub Profile
@chrisvoss
chrisvoss / PFLoadingView-Style
Created August 21, 2012 15:34
Style PFLoadingView in PFQueryTableViewController subclass
- (void)stylePFLoadingViewTheHardWay
{
UIColor *labelTextColor = [UIColor whiteColor];
UIColor *labelShadowColor = [UIColor darkGrayColor];
UIActivityIndicatorViewStyle activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhite;
// go through all of the subviews until you find a PFLoadingView subclass
for (UIView *subview in self.view.subviews)
{
if ([subview class] == NSClassFromString(@"PFLoadingView"))