Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
NCVibrantHighContrastStyling: Difference between revisions - iPhone Development Wiki

NCVibrantHighContrastStyling: Difference between revisions

From iPhone Development Wiki
(Created page with "placeholder {{occlass|library=UserNotificationsUIKit.framework|navbox=1}}")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
placeholder
'''NCVibrantHighContrastStyling''' is a subclass of '''NCVibrantStyling''' and is used to apply vibrancy to UIView, UILabel, and UIImageView elements.
 
==Source Code==
<source lang="objc">
@implementation NTXVibrantHighContrastStyling
- (CGFloat)alpha {
  return 1;
}
- (NSString *)blendMode {
  return nil;
}
- (UIColor *)color {
  return [UIColor blackColor];
}
- (long long)style {
  return 0;
}
@end
</source>


{{occlass|library=UserNotificationsUIKit.framework|navbox=1}}
{{occlass|library=UserNotificationsUIKit.framework|navbox=1}}

Latest revision as of 01:13, 23 December 2016

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