i want to change all the UILabel's text color for total app how can i do this .is there any simple way to change label color.
i tried this ,but i want to change write this code in every class
for( UIView *view in [testScroll subviews])
    {
        if([view isKindOfClass:[UILabel class]])
        {
            [(UILabel *)view setTextColor:[UIColor whiteColor]];
        }
        else if([view isKindOfClass:[UIView class]])
    }
Do anyone have simple method .