سؤال

i want to get a list of all Videos which are in the itunes library, how i get the access to them? later I want to play them eventually, but not in fullscreen. i hope you can help me.

هل كانت مفيدة؟

المحلول

MPMediaPropertyPredicate *predicate = [MPMediaPropertyPredicate predicateWithValue:@(MPMediaTypeAnyVideo) forProperty:MPMediaItemPropertyMediaType];
MPMediaQuery *movieQuery = [[MPMediaQuery alloc] init];
[movieQuery addFilterPredicate:predicate];

NSArray *allVideos = [movieQuery items];
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top