如何在macOS / iOS上观察夜班的变化?

时间:2017-08-05 18:17:17

标签: ios macos iphone-privateapi night-shift

我正在寻找一种方法来确定何时启用或禁用夜班,并根据该方式执行操作。我目前在CoreBrightness框架中使用CBBlueLightClient标头来控制夜班。这是我在我的应用中使用的部分标题:

@interface CBBlueLightClient : NSObject
- (BOOL)setStrength:(float)strength commit:(BOOL)commit;
- (BOOL)setEnabled:(BOOL)enabled;
- (BOOL)getStrength:(float*)strength;
- (BOOL)getBlueLightStatus:(struct { BOOL x1; BOOL x2; BOOL x3; int x4; struct { struct { int x_1_2_1; int x_1_2_2; } x_5_1_1; struct {
 int x_2_2_1; int x_2_2_2; } x_5_1_2; } x5; unsigned long x6; }*)arg1;
 @end

CBBlueLightClient还有一个通知栏- (void)setStatusNotificationBlock:(id /* block */)arg1;,我无法弄清楚如何使用。

Here's the full header for iOS.我尝试的所有内容都适用于macOS,包括似乎存在的通知块。我无法弄清楚它期待什么样的关闭。

2 个答案:

答案 0 :(得分:5)

您可以创建一个void通知区块,当夜班启用/禁用以及夜班设置发生变化时,它会触发。在通知栏内,您可以查询是启用还是禁用夜班。

CBBlueLightClient *client = [[CBBlueLightClient alloc] init];

void (^notificationBlock)() = ^() {
    StatusData status;
    [client getBlueLightStatus:&status];
    //... check status.enabled, status.active, etc);
};

[client setStatusNotificationBlock:notificationBlock];

似乎力量的变化不会发出通知。如果需要,你可以进行民意调查吗?这取决于你的用例。

如果您只是想知道它何时被切换,请订阅上述通知并检查.enabled属性。

标题我使用:

@interface CBBlueLightClient : NSObject

typedef struct {
    int hour;
    int minute;
} Time;

typedef struct {
    Time fromTime;
    Time toTime;
} Schedule;

typedef struct {
    BOOL active;
    BOOL enabled;
    BOOL sunSchedulePermitted;
    int mode;
    Schedule schedule;
    unsigned long long disableFlags;
} StatusData;

- (void)setStatusNotificationBlock:(id /* block */)arg1;
- (BOOL)getBlueLightStatus:(StatusData *)arg1;

@end

答案 1 :(得分:0)

您是否尝试过其他API?

CCUINightShiftSectionController

 (void)_getBlueLightStatus:(id /* block */)arg1;
 (void)_setNightShiftEnabled:(BOOL)arg1;

CFCBSetNightShiftMode