I cannot, for example have a label inside of a ScrollView and apply a style to it.
This is due to an explicit check in UILabel+NUI.m at line 25.
if ([self class] == [UILabel class] &&
[[self superview] class] == [UIView class]) {
[self initNUI];
if (![self.nuiClass isEqualToString:@"none"]) {
[NUIRenderer renderLabel:self withClass:self.nuiClass];
}
}