iPhone: programmatically check if vibration is ena

2019-06-10 05:00发布

Is it possible to programmatically check if the system option of iPhone

Settings -> Sounds -> Vibrate on Ring

is enabled?

In my app, I would like to display an alert to the user if that option is disabled.

2条回答
Ridiculous、
2楼-- · 2019-06-10 05:40

You cannot. Because apple is not providing the API to access the iPhone settings app.

查看更多
疯言疯语
3楼-- · 2019-06-10 05:45

may be you could give it a try and make sure you're running the app in iDevice because simulator don't have silent or ring mode :)

New Edits

-(BOOL)silenced 
{
     #if TARGET_IPHONE_SIMULATOR
        // return NO in simulator. Code causes crashes for some reason.
     return NO;
     #endif

    CFStringRef state;
    UInt32 propertySize = sizeof(CFStringRef);
    AudioSessionInitialize(NULL, NULL, NULL, NULL);
    AudioSessionGetProperty(kAudioSessionProperty_AudioRoute, &propertySize, &state);
    if(CFStringGetLength(state) > 0)
        return NO;
    else
        return YES;
}

and you can call this method like this way

if ([self silenced]) 
{
    NSLog(@"silenced");
} else {
    NSLog(@"not silenced");
}

hope it will help you!

查看更多
登录 后发表回答