菜鸟教程小白 发表于 2022-12-12 10:03:08

iphone - 工具栏上的 xcoded 静音按钮可将应用程序的声音静音


                                            <p><p>我是 iOS 开发的新手。我有一个简单的“点击器”应用程序,每次单击屏幕按钮时都会发出声音(mp3 文件)。 </p>

<p>我想实现一个静音按钮,当它被选中时:</p>

<ol>
<li><p>按钮图像发生变化(并保持变化直到再次被选中)</p></li>
<li><p>应用程序的声音被静音</p></li>
<li><p>再次选择时返回原始状态 - 声音开启和上一个按钮图像</p></li>
</ol>

<p>这是我播放声音的方式:</p>

<pre><code>- (IBAction)click;


#import &#34;soundButtonViewController.h&#34;

@implementation soundButtonViewController

-(IBAction)click
{
   CFBundleRef mainBundle = CFBundleGetMainBundle();
   CFURLRef soundFileURLRef;
   soundFileURLRef =CFBundleCopyResourceURL(mainBundle,
   (CFStringRef)@&#34;click&#34;,CFSTR (&#34;mp3&#34;), NULL);
   UInt32 soundID;
   AudioServicesCreateSystemSoundID(soundFileURLRef, &amp;soundID);
   AudioServicesPlaySystemSound(soundID);
}
</code></pre>

<p>在任何地方都有这样的示例代码吗?我已经做了一些研究,似乎有一些方法,但想要针对我的要求。任何帮助或方向将不胜感激。谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>为了更改按钮,我通常的做法是创建一个 BOOL 来跟踪按钮的状态。在这种情况下,BOOL 是“muteOn”,按钮的 IBOutlet 是 muteButton。然后,我使用此代码来控制按钮图像以及应用程序是否静音。如果 muteON 设置为 YES,您还可以在单​​击操作(如下所示)中放置 if/then 以播放声音或不执行任何操作。记得在 .h 文件中声明你的 Bool。</p>

<pre><code>-(IBAction)muteToggle{

if (muteOn == YES) {
    muteOn = NO;
    UIImage *buttonImage = ;
    ;
}

else {
    muteOn = YES;
    UIImage *buttonImage = ;
    ;
}

}


-(IBAction) click {

if (muteOn == YES){
//Do Nothing
}

else{
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef =CFBundleCopyResourceURL(mainBundle,
(CFStringRef)@&#34;click&#34;,CFSTR (&#34;mp3&#34;), NULL);
UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileURLRef, &amp;soundID);
AudioServicesPlaySystemSound(soundID);

}
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 工具栏上的 xcoded 静音按钮可将应用程序的声音静音,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15793925/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15793925/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 工具栏上的 xcoded 静音按钮可将应用程序的声音静音