MPMediaItemCollection计数 - NSUInteger

时间:2009-09-17 03:40:47

标签: iphone objective-c cocoa-touch nsuinteger

我正在尝试使用MPMediaItemCollection count属性对数组中的项进行排序。当我尝试使用此NSUInteger属性对数组进行排序时,它不起作用。当我尝试打印它(NSLog(@"%lx",count);)时,它无法正确打印。

如何让NSUInteger正常工作?

2 个答案:

答案 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);