我正在尝试使用MPMediaItemCollection
count属性对数组中的项进行排序。当我尝试使用此NSUInteger
属性对数组进行排序时,它不起作用。当我尝试打印它(NSLog(@"%lx",count);
)时,它无法正确打印。
如何让NSUInteger
正常工作?
答案 0 :(得分:1)
也许这会有所帮助。这适用于我使用MPMediaCollection:
[everything setGroupingType: MPMediaGroupingGenre];
NSArray *genreLists = [everything collections];
for (MPMediaItemCollection *genreList in genreLists) {
NSLog (@"count: %d", [genreList count]);
}
答案 1 :(得分:0)
尝试使用此声明:我使用它并打印出来只为我找到
NSLog(@"%d",count);