我正在尝试使用MPMediaItemCollection
count 属性对数组中的项目进行排序。当我尝试使用此属性对数组进行排序时NSUInteger
,它不起作用。当我尝试打印它 ( NSLog(@"%lx",count);
) 时,它无法正确打印。
我如何才能NSUInteger
正常工作?
我正在尝试使用MPMediaItemCollection
count 属性对数组中的项目进行排序。当我尝试使用此属性对数组进行排序时NSUInteger
,它不起作用。当我尝试打印它 ( NSLog(@"%lx",count);
) 时,它无法正确打印。
我如何才能NSUInteger
正常工作?
也许这会有所帮助。这适用于我使用 MPMediaCollection:
[everything setGroupingType: MPMediaGroupingGenre];
NSArray *genreLists = [everything collections];
for (MPMediaItemCollection *genreList in genreLists) {
NSLog (@"count: %d", [genreList count]);
}
尝试使用以下语句:我使用它并打印出来 just find for me
NSLog(@"%d",count);