gpt4 book ai didi

iphone - 如何通过 UIswtch 的 on 和 off 控制音频声音

转载 作者:行者123 更新时间:2023-12-03 02:26:09 25 4
gpt4 key购买 nike

在日期选择器中选择日期时播放点击声音的声音。现在我需要使用 UISWitch 设置我的设置模块以控制 ON 和 OFF。
如何将我的声音控制设置为 uiswitch 。

-(void) switchforSounds:(id)sender 
{
if ([sender isOn])
{
[Appdelegate.infoObj playback];

}
else
{

}
}

-(void) playback
{
NSString *path = [[NSBundle mainBundle] pathForResource:@"click" ofType:@"caf"];
if (path)
{
NSURL *url = [NSURL fileURLWithPath: path];

SystemSoundID soundID;
AudioServicesCreateSystemSoundID ((CFURLRef)url, &soundID);
AudioServicesPlaySystemSound(soundID);
}
}

最佳答案

好,易于:

if(myUISwitch.on){
[self playback];
}

如果那不是您想要的,我可以随时修改它。

关于iphone - 如何通过 UIswtch 的 on 和 off 控制音频声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4826191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com