target指定产品类型'com.apple.product-type.framework'

时间:2011-05-30 19:05:42

标签: iphone objective-c xcode api soundcloud

我正在尝试在these instructions之后为iPhone使用Soundcloud API包装器,现在我收到此错误:

target specifies product type 'com.apple.product-type.framework', but there's no such product type for the 'iphoneos' platform

关于如何解决这个问题的任何想法?

1 个答案:

答案 0 :(得分:3)

SoundCloud API有两个产品:

  • SoundCloudAPI.framework(适用于Mac OS X的框架)
  • libSoundCloudAPI.a(适用于iOS的静态库)

如果您要为iOS构建应用,则需要将libSoundCloudAPI.a 添加为直接依赖项。您已将框架添加为依赖项,这就是您收到此错误的原因。