菜鸟教程小白 发表于 2022-12-12 18:03:21

ios - 在 iPhone 应用程序中使用 AVSystemController


                                            <p><p>我想以编程方式降低 iPhone 的铃声音量,我知道可以使用 <code>AVSystemController</code>,但我知道,这是一个私有(private)方法。如果我使用它,苹果会拒绝该应用还是请建议我替代方式</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>- (void) setSystemVolumeLevelTo:(float)newVolumeLevel
{
    Class avSystemControllerClass = NSClassFromString(@&#34;AVSystemController&#34;);
    id avSystemControllerInstance = ;

    NSString *soundCategory = @&#34;Ringtone&#34;;

    NSInvocation *volumeInvocation = [NSInvocation invocationWithMethodSignature:
                                  [avSystemControllerClass instanceMethodSignatureForSelector:
                                 @selector(setVolumeTo:forCategory:)]];
    ;
    ;
    ;
    ;
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iPhone 应用程序中使用 AVSystemController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21157137/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21157137/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iPhone 应用程序中使用 AVSystemController