47

私の場合は単純です。警告信号を再生する必要があり、ユーザーに確実に聞こえるようにしたいので、システムの音量を確認します。

現在のシステムボリュームを確認するにはどうすればよいですか?

4

8 に答える 8

48

スイフトのアップデート

let vol = AVAudioSession.sharedInstance().outputVolume

オーディオセッションは出力ボリュームを提供できます(iOS> = 6.0)。

float vol = [[AVAudioSession sharedInstance] outputVolume];
NSLog(@"output volume: %1.2f dB", 20.f*log10f(vol+FLT_MIN));
于 2013-05-06T19:20:05.987 に答える
15

Swift 3.1

let audioSession = AVAudioSession.sharedInstance()
var volume: Float?
do {
    try audioSession.setActive(true)
    volume = audioSession.outputVolume
} catch {
    print("Error Setting Up Audio Session")
}

audioSession.setActive(true)-重要

于 2017-05-08T14:32:49.627 に答える
13

これを試して:

MPMusicPlayerController *iPod = [MPMusicPlayerController iPodMusicPlayer];
float volumeLevel = iPod.volume;

MediaPlayerフレームワークをインポートする必要があります。

于 2011-09-19T17:41:45.123 に答える
12

これは正常に機能します。

Float32 volume;
UInt32 dataSize = sizeof(Float32);

AudioSessionGetProperty (
                     kAudioSessionProperty_CurrentHardwareOutputVolume,
                     &dataSize,
                     &volume
                     );
于 2011-10-17T09:01:14.157 に答える
12

スイフト2の場合:

let volume = AVAudioSession.sharedInstance().outputVolume   
print("Output volume: \(volume)")
于 2016-03-17T00:35:39.637 に答える
5

デフォルトのシステムのボリュームビューを使用して、必要な場所に追加できます。私の場合、自分の音楽プレーヤーでそれを要求しました。簡単で手間がかかりません。ビューを追加するだけで、すべてが完了します。これは、AppleのMPVolumeクラスリファレンスで説明されています。

mpVolumeViewParentView.backgroundColor = [UIColor clearColor];
MPVolumeView *myVolumeView =
[[MPVolumeView alloc] initWithFrame: mpVolumeViewParentView.bounds];
[mpVolumeViewParentView addSubview: myVolumeView];
[myVolumeView release];
于 2012-11-23T02:26:48.810 に答える
2

iOSデバイスのボリュームを処理するために、静的メソッドを使用してクラスを用意しました。私はあなたと共有させてください:)

import AVFoundation
class HeadPhoneDetectHelper {
class func isHeadPhoneConnected() -> Bool
{
    do{
        let audioSession = AVAudioSession.sharedInstance()
        try audioSession.setActive(true)
        let currentRoute = audioSession.currentRoute
        let headPhonePortDescriptionArray = currentRoute.outputs.filter{$0.portType == AVAudioSessionPortHeadphones}
        let isHeadPhoneConnected = headPhonePortDescriptionArray.count != 0
        return isHeadPhoneConnected
    }catch{
        print("Error while checking head phone connection : \(error)")
    }
    return false
}

class func isVolumeLevelAppropriate() -> Bool
{
    let minimumVolumeLevelToAccept = 100
    let currentVolumeLevel = HeadPhoneDetectHelper.getVolumeLevelAsPercentage()
    let isVolumeLevelAppropriate = currentVolumeLevel >= minimumVolumeLevelToAccept
    return isVolumeLevelAppropriate
}

class func getVolumeLevelAsPercentage() -> Int
{
    do{
        let audioSession = AVAudioSession.sharedInstance()
        try audioSession.setActive(true)
        let audioVolume =  audioSession.outputVolume
        let audioVolumePercentage = audioVolume * 100
        return Int(audioVolumePercentage)
    }catch{
        print("Error while getting volume level \(error)")
    }
    return 0
}
}
于 2016-02-03T14:25:02.060 に答える
1

Swift 2.2、MediaPlayerをインポートしてください

private func setupVolumeListener()
{
    let frameView:CGRect = CGRectMake(0, 0, 0, 0)
    let volumeView = MPVolumeView(frame: frameView)
    //self.window?.addSubview(volumeView) //use in app delegate
   self.view.addSubview(volumeView)  //use in a view controller


    NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(volumeChanged(_:)), name: "AVSystemController_SystemVolumeDidChangeNotification", object: nil)
}//eom



func volumeChanged(notification:NSNotification)
{
    let volume = notification.userInfo!["AVSystemController_AudioVolumeNotificationParameter"]
    let category = notification.userInfo!["AVSystemController_AudioCategoryNotificationParameter"]
    let reason = notification.userInfo!["AVSystemController_AudioVolumeChangeReasonNotificationParameter"]

    print("volume:      \(volume!)")
    print("category:    \(category!)")
    print("reason:      \(reason!)")
    print("\n")
}//eom
于 2016-05-27T21:08:50.137 に答える