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
NCVibrantWidgetSecondaryStyling: Difference between revisions - iPhone Development Wiki

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


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

Latest revision as of 01:07, 23 December 2016

Source Code

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