MPMusicPlayerController и iOS 11.3
У меня есть приложение для iOS, которое отлично работает на iOS 6.0 до 11.2, но только что начало сбой в 11.3(.1) и 11.4 бета-версиях. Приложение воспроизводит песни в плейлисте с локального устройства. Я извлек основные части приложения для тестового примера, и он не работает так же. Я делаю что-то неправильно? Я использую XCode 7.3.1 и ориентируюсь на iOS 6.0. Когда это терпит неудачу единственное сообщение, которое я получаю в журнале (кроме списка песен через NSLog есть следующая ошибка в 1 строке: libC++abi.dylib: завершается с неперехваченным исключением типа NSException. Сбой на [musicPlayer play] команда в подпрограмме playPlaylist. Вот код:
#import "ViewController.h"
#import <MediaPlayer/MediaPlayer.h>
#define TESTMUSICPLAYER
MPMusicPlayerController *musicPlayer;
@interface ViewController ()
@property (strong, nonatomic) NSMutableArray *validPlayListArray;
@property (strong, nonatomic) NSString *musicPlaylist;
@property (strong, nonatomic) IBOutlet UIView *playlistsTableView;
@property (strong, nonatomic) NSMutableArray *playListArray;
@property NSInteger currentPlaylistIndex;
@property (strong, nonatomic) MPMediaQuery *musicPlaylistQuery;
@property (strong, nonatomic) NSArray *collections;
- (IBAction)stopButtonPressed:(id)sender;
@end
@implementation ViewController
@synthesize validPlayListArray;
@synthesize musicPlaylistQuery;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [validPlayListArray count];
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 30.0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *musicCellIdentifier = @"MusicCell";
UITableViewCell *musicCell = [tableView dequeueReusableCellWithIdentifier:musicCellIdentifier];
if (musicCell == nil)
{
musicCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:musicCellIdentifier];
musicCell.selectionStyle = UITableViewCellSelectionStyleGray;
}
musicCell.textLabel.text = [validPlayListArray objectAtIndex:indexPath.row];
return musicCell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
_musicPlaylist = [validPlayListArray objectAtIndex:indexPath.row];
[self playMusic];
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self loadThePlaylistArrays];
}
- (void)loadThePlaylistArrays
{
// Clear the valid playlist array
validPlayListArray = nil;
// Allocate our arrays
validPlayListArray = [[NSMutableArray alloc] init];
MPMediaPropertyPredicate *playlistName;
MPMediaQuery *playlistsQuery = [MPMediaQuery playlistsQuery];
_playListArray = (NSMutableArray*)[playlistsQuery collections];
// Set the currentPlaylistIndex to -1 in case there are no matches
_currentPlaylistIndex = -1;
int validCount = 0;
for (int i = 0; i < [_playListArray count]; ++i)
{
NSString *stringplaylistName = [[_playListArray objectAtIndex:i] valueForProperty:MPMediaPlaylistPropertyName];
playlistName = [MPMediaPropertyPredicate predicateWithValue:stringplaylistName forProperty:MPMediaPlaylistPropertyName];
musicPlaylistQuery = [MPMediaQuery playlistsQuery];
[musicPlaylistQuery addFilterPredicate:playlistName];
_collections = [musicPlaylistQuery items];
if ([_collections count] > 0)
{
//NSLog(@"Playlist: %@ Item count: %d", stringplaylistName, [_collections count]);
if (validCount > 0)
{
if (![stringplaylistName isEqualToString:[validPlayListArray objectAtIndex:validCount - 1]])
{
if (![stringplaylistName isEqualToString:@""])
{
[validPlayListArray addObject:stringplaylistName];
if ([_musicPlaylist isEqualToString:stringplaylistName])
{
_currentPlaylistIndex = validCount;
}
validCount ++;
}
}
}
else
{
if (![stringplaylistName isEqualToString:@""])
{
[validPlayListArray addObject:stringplaylistName];
if ([_musicPlaylist isEqualToString:stringplaylistName])
{
_currentPlaylistIndex = validCount;
}
validCount ++;
}
}
}
}
}
- (void)playMusic
{
MPMediaPropertyPredicate *playlistName;
[self initializeMusicPlayer];
playlistName = [MPMediaPropertyPredicate predicateWithValue:_musicPlaylist forProperty:MPMediaPlaylistPropertyName];
musicPlaylistQuery = [MPMediaQuery playlistsQuery];
[musicPlaylistQuery addFilterPredicate:playlistName];
_collections = [musicPlaylistQuery items];
#ifdef TESTMUSICPLAYER
for (MPMediaItem *song in _collections)
{
NSString* songTitle = [song valueForProperty:MPMediaItemPropertyTitle];
NSLog(@"%@", songTitle);
}
#endif
if ([_collections count] > 0)
{
[self playPlaylist];
}
}
- (void)initializeMusicPlayer
{
musicPlayer = [MPMusicPlayerController applicationMusicPlayer];
[musicPlayer setShuffleMode:MPMusicShuffleModeOff];
[musicPlayer setRepeatMode:MPMusicRepeatModeAll];
}
- (void)playPlaylist
{
[musicPlayer setQueueWithItemCollection:(MPMediaItemCollection *)musicPlaylistQuery];
[musicPlayer play];
}
- (IBAction)stopButtonPressed:(id)sender
{
[musicPlayer stop];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
Пользовательский интерфейс довольно прост - 1 UITableView (playlistsTableView) и 1 кнопка "Стоп".
1 ответ
Почему вы не используете
[musicPlayer setQueueWithQuery:musicPlaylistQuery];
-> ОК
вместо
[musicPlayer setQueueWithItemCollection:(MPMediaItemCollection *)musicPlaylistQuery];
-> не удается