NCVibrantWidgetTertiaryStyling: 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 NCVibrantWidgetTertiaryStyling
- (CGFloat)alpha {
  return 1.0;
}
- (UIColor *)color {
  return [UIColor colorWithRed:0 green:0 blue:0 alpha:0.13];
}
- (long long)style {
  return 7;
}
@end
</source>


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

Latest revision as of 01:08, 23 December 2016

Source Code

@implementation NCVibrantWidgetTertiaryStyling
- (CGFloat)alpha {
   return 1.0;
}
- (UIColor *)color {
   return [UIColor colorWithRed:0 green:0 blue:0 alpha:0.13];
}
- (long long)style {
   return 7;
}
@end