Created
October 4, 2020 14:44
-
-
Save opa334/4f52e37563cc723355167d6dde53c5fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@protocol CCSModuleProvider | |
@required | |
- (NSUInteger)numberOfProvidedModules; | |
- (NSString*)identifierForModuleAtIndex:(NSUInteger)index; | |
- (id)moduleInstanceForModuleIdentifier:(NSString*)identifier; | |
- (NSString*)displayNameForModuleIdentifier:(NSString*)identifier; | |
@optional | |
- (NSSet*)supportedDeviceFamiliesForModuleWithIdentifier:(NSString*)identifier; | |
- (NSSet*)requiredDeviceCapabilitiesForModuleWithIdentifier:(NSString*)identifier; | |
- (NSString*)associatedBundleIdentifierForModuleWithIdentifier:(NSString*)identifier; | |
- (NSString*)associatedBundleMinimumVersionForModuleWithIdentifier:(NSString*)identifier; | |
- (NSUInteger)visibilityPreferenceForModuleWithIdentifier:(NSString*)identifier; | |
- (UIImage*)settingsIconForModuleIdentifier:(NSString*)identifier; | |
- (BOOL)providesListControllerForModuleIdentifier:(NSString*)identifier; | |
- (id)listControllerForModuleIdentifier:(NSString*)identifier; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment