NSString 错误 - 接口类型无法静态分配
我正在尝试创建一个 NSDictionary 对象,其中的键是用歌曲的编号以及信息来定义的。当尝试定义传递给该方法的 NSNumber 时,我收到上述错误:
+(NSDictionary *) initWithMPMediaItem:(MPMediaItem *) song andSongNumber: (NSNumber *)songCount{
NSString *songKey = @"%@ Song Title", songCount;
I'm trying to create an NSDictionary object where the keys are defined with the number of the song, along with the information. I'm getting the above error when trying to define the NSNumber that is being passing into the method:
+(NSDictionary *) initWithMPMediaItem:(MPMediaItem *) song andSongNumber: (NSNumber *)songCount{
NSString *songKey = @"%@ Song Title", songCount;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您想使用:
It looks like you want to use: