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

发布于 2024-11-10 04:17:40 字数 258 浏览 0 评论 0原文

我正在尝试创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ま柒月 2024-11-17 04:17:40

看起来您想使用:

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

It looks like you want to use:

NSString *songKey = [NSString stringWithFormat:@"%@ Song Title", songCount];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文