菜鸟教程小白 发表于 2022-12-12 16:59:24

ios:媒体播放器静音为什么?


                                            <p><p>我有一个带有媒体视频的 iOS 项目,但是当我运行这个应用程序时,视频是静音的,请帮我这是代码:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{
    static NSString *CellIdentifier = @&#34;MediaCell&#34;;
    UITableViewCell *cell = ;

// Configure the cell...
    NSUInteger row = ;
    MPMediaItem *item = ;
    cell.textLabel.text = ;
    cell.detailTextLabel.text = ;
    cell.tag = row;

    return cell;
}
- (void)loadMediaItemsForMediaType:(MPMediaType)mediaType

{

    MPMediaQuery *query = [ init];

    NSNumber *mediaTypeNumber= ;

    MPMediaPropertyPredicate *predicate = [MPMediaPropertyPredicate
    predicateWithValue:mediaTypeNumber forProperty:MPMediaItemPropertyMediaType];

    ;

    self.mediaItems = ;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你是在 iPad 上测试它吗?如果是,我已经看到如果侧面开关按钮设置为静音而不是“锁定旋转”并且您碰巧单击它,应用程序音频会静音的问题。查看此 wiki 如何更改它 - <a href="http://www.wikihow.com/Set-Side-Switch-Function-On-an-iPad" rel="noreferrer noopener nofollow">http://www.wikihow.com/Set-Side-Switch-Function-On-an-iPad</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios:媒体播放器静音为什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20324444/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20324444/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios:媒体播放器静音为什么?