UILocalNotification声音和振动设置IOS

时间:2016-04-12 11:21:30

标签: ios swift uilocalnotification

我正在使用自定义声音安排本地通知。 但我需要的是设置音量和振动手机以及通知。有可能吗?

1 个答案:

答案 0 :(得分:0)

大约三年前,当应用从我的BLE标签收到触发器时,我使用以下代码来提升音量。但我不知道你是否可以通过本地通知完成这项工作。

- (void) maxDeviceVolume:(float) vol
{
    UISlider *volumeSlider;
    MPVolumeView *myVolumeView = [[MPVolumeView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)];
    for (UIView *view in [myVolumeView subviews]) {
        if ([[[view class] description] isEqualToString:@"MPVolumeSlider"]) {
            volumeSlider = (UISlider *)view;
        }
    }
    [volumeSlider setValue:vol animated:NO];
}