Skip to content

Instantly share code, notes, and snippets.

@MTACS
Created September 19, 2020 18:15
Show Gist options
  • Save MTACS/c9fee7b467cd1f6befde261d90122b3d to your computer and use it in GitHub Desktop.
Save MTACS/c9fee7b467cd1f6befde261d90122b3d to your computer and use it in GitHub Desktop.
@interface SBHWidget: NSObject
@property NSString *configurationStorageIdentifier; // com.apple.mobilecal
@property NSString *configurationBundleIdentifier; // com.apple.mobilecal
@property NSString *displayName; // Calendar
@property NSString *extensionBundleIdentifier; // com.apple.mobilecal.CalendarWidgetExtension
@property NSString *kind; // com.apple.CalendarWidget.CalendarWidget
@end
@interface SBWidgetIcon: NSObject
@property SBHWidget *activeWidget;
@property NSArray *widgets;
- (id)initWithWidget:(id)arg1;
- (id)initWithWidgets:(id)arg1;
- (id)widgets;
- (BOOL)isWidgetIcon;
- (BOOL)isWidgetStackIcon;
- (void)setActiveWidget:(id)arg1;
- (void)setStackChangeReason:(NSUInteger)arg1;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment