我关注了https://developers.soundcloud.com/docs/api/ios-quickstart页面。

由于现在需要arm64,因此我更改了:

架构:标准架构(armv7,arm64)

仅构建 Activity 架构:否

有效架构:arm64 armv7

我遇到了错误,所以现在我想知道,SoundCloud API是否支持64位?

错误如下:

"_NXOAuth2AccountDidFailToGetAccessTokenNotification", referenced from:
-[SCSoundCloud init] in libSoundCloudAPI.a(SCSoundCloud.o)
"_NXOAuth2AccountStoreAccountsDidChangeNotification", referenced from:
-[SCSoundCloud init] in libSoundCloudAPI.a(SCSoundCloud.o)
"_NXOAuth2AccountStoreDidFailToRequestAccessNotification", referenced from:
-[SCSoundCloud init] in libSoundCloudAPI.a(SCSoundCloud.o)
"_NXOAuth2AccountStoreErrorKey", referenced from:
-[SCLoginViewController failToRequestAccess:] in libSoundCloudUI.a(SCLoginViewController.o)

最佳答案

我在项目中也使用SoundCloud库已有一段时间了。由于它不是最新的,并且具有很多依赖关系,因此我决定创建自己的库并将其发布在Github上:

ABMSoundCloudAPI on Github

也许对您有用:)

10-04 13:57