Last active
December 17, 2015 17:49
-
-
Save rbaulin/5649290 to your computer and use it in GitHub Desktop.
Colorize view stack, useful for frame inspection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// example: [self colorizeStack:self.view]; | |
- (void)colorizeStack:(UIView *)view { | |
CGFloat hue = ( arc4random() % 256 / 256.0 ); // 0.0 to 1.0 | |
CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from white | |
CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from black | |
UIColor *color = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:0.8]; | |
view.backgroundColor = color; | |
for (UIView *subView in view.subviews) { | |
[self colorizeStack:subView]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment