mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 20:01:56 +03:00
28 lines
525 B
Objective-C
28 lines
525 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
* Protocol declaring service logic.
|
|
*/
|
|
@protocol MSService <NSObject>
|
|
|
|
/**
|
|
* Enable or disable this service.
|
|
* The state is persisted in the device's storage across application launches.
|
|
*
|
|
* @param isEnabled Whether this service is enabled or not.
|
|
*
|
|
* @see isEnabled
|
|
*/
|
|
+ (void)setEnabled:(BOOL)isEnabled;
|
|
|
|
/**
|
|
* Indicates whether this service is enabled.
|
|
*
|
|
* @return `YES` if this service is enabled, `NO` if it is not.
|
|
*
|
|
* @see setEnabled:
|
|
*/
|
|
+ (BOOL)isEnabled;
|
|
|
|
@end
|