Dev:NCVibrantHighContrastStyling

From The Apple Wiki

NCVibrantHighContrastStyling is a subclass of NCVibrantStyling and is used to apply vibrancy to UIView, UILabel, and UIImageView elements.

Source Code

@implementation NTXVibrantHighContrastStyling
- (CGFloat)alpha {
   return 1;
}
- (NSString *)blendMode {
   return nil;
}
- (UIColor *)color {
   return [UIColor blackColor];
}
- (long long)style {
   return 0;
}
@end