BOOL ossdoesAppRunInBackground()

in AliyunOSSSDK/OSSFileLog/OSSFileLogger.m [1445:1458]


BOOL ossdoesAppRunInBackground() {
    BOOL answer = NO;

    NSArray *backgroundModes = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"UIBackgroundModes"];

    for (NSString *mode in backgroundModes) {
        if (mode.length > 0) {
            answer = YES;
            break;
        }
    }

    return answer;
}