NSString错误 - 无法静态分配接口类型

我想创建一个NSDictionary对象,其中的键与歌曲的编号一起定义,以及信息。NSString错误 - 无法静态分配接口类型

+(NSDictionary *) initWithMPMediaItem:(MPMediaItem *) song andSongNumber: (NSNumber *)songCount{ 

NSString *songKey = @"%@ Song Title", songCount;

回答:

它看起来像你想使用:

NSString *songKey = [NSString stringWithFormat:@"%@ Song Title", songCount]; 

以上是 NSString错误 - 无法静态分配接口类型 的全部内容, 来源链接: utcz.com/qa/260115.html

回到顶部