我有一个带有媒体视频的 iOS 项目,但是当我运行这个应用程序时,视频是静音的,请帮我这是代码:
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"MediaCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
NSUInteger row = [indexPath row];
MPMediaItem *item = [self.mediaItems objectAtIndex:row];
cell.textLabel.text = [item valueForProperty:MPMediaItemPropertyTitle];
cell.detailTextLabel.text = [item valueForProperty:MPMediaItemPropertyArtist];
cell.tag = row;
return cell;
}
- (void)loadMediaItemsForMediaTypeMPMediaType)mediaType
{
MPMediaQuery *query = [[MPMediaQuery alloc] init];
NSNumber *mediaTypeNumber= [NSNumber numberWithInt:mediaType];
MPMediaPropertyPredicate *predicate = [MPMediaPropertyPredicate
predicateWithValue:mediaTypeNumber forProperty:MPMediaItemPropertyMediaType];
[query addFilterPredicate:predicate];
self.mediaItems = [query items];
}
你是在 iPad 上测试它吗?如果是,我已经看到如果侧面开关按钮设置为静音而不是“锁定旋转”并且您碰巧单击它,应用程序音频会静音的问题。查看此 wiki 如何更改它 - http://www.wikihow.com/Set-Side-Switch-Function-On-an-iPad
关于ios:媒体播放器静音为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20324444/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |