NCVibrantWidgetSecondaryHighlightStyling: Difference between revisions

From iPhone Development Wiki
(Created page with "placeholder {{occlass|library=UserNotificationsUIKit.framework|navbox=1}}")
 
No edit summary
 
Line 1: Line 1:
placeholder
==Source Code==
<source lang="objc">
@implementation NCVibrantWidgetSecondaryHighlightStyling
- (CGFloat)alpha {
  return 1;
}
- (UIColor *)color {
  return [UIColor colorWithRed:0 green:0 blue:0 alpha:0.42];
}
- (long long)style {
  return 10;
}
@end
</source>


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

Latest revision as of 00:52, 23 December 2016

Source Code

@implementation NCVibrantWidgetSecondaryHighlightStyling
- (CGFloat)alpha {
   return 1;
}
- (UIColor *)color {
   return [UIColor colorWithRed:0 green:0 blue:0 alpha:0.42];
}
- (long long)style {
   return 10;
}
@end