Skip to content

Instantly share code, notes, and snippets.

@pita5
Created December 24, 2011 13:53
Show Gist options
  • Save pita5/1517375 to your computer and use it in GitHub Desktop.
Save pita5/1517375 to your computer and use it in GitHub Desktop.
if (self.superview)
{
[self.superview.layer drawInContext:ctx];
for (UIView *view in [self.superview subviews])
{
if (![view isEqual:self])
{
[view.layer drawInContext:ctx];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment