Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/cassandra/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
IOS SoundCloud,获取记录的用户数据_Ios_Objective C_Soundcloud - Fatal编程技术网

IOS SoundCloud,获取记录的用户数据

IOS SoundCloud,获取记录的用户数据,ios,objective-c,soundcloud,Ios,Objective C,Soundcloud,我正在尝试将SoundCloud集成到我的IOS应用程序中,这样我就可以从我的应用程序上传和下载歌曲。到目前为止,我已经完成上传和下载歌曲,但我想检索成功登录后的用户数据 用户成功登录后如何检索用户数据?如果您使用的是官方SoundCloud iOS SDK,我认为您需要在SCRequest类中使用此方法: + (id) performMethod:(SCRequestMethod)aMethod onResource:(NSURL *)resource usingPa

我正在尝试将SoundCloud集成到我的IOS应用程序中,这样我就可以从我的应用程序上传和下载歌曲。到目前为止,我已经完成上传和下载歌曲,但我想检索成功登录后的用户数据


用户成功登录后如何检索用户数据?

如果您使用的是官方SoundCloud iOS SDK,我认为您需要在SCRequest类中使用此方法:

+ (id)   performMethod:(SCRequestMethod)aMethod
        onResource:(NSURL *)resource
   usingParameters:(NSDictionary *)parameters
       withAccount:(SCAccount *)account
sendingProgressHandler:(SCRequestSendingProgressHandler)progressHandler
   responseHandler:(SCRequestResponseHandler)responseHandler;

+ (void)cancelRequest:(id)request;
只要打开SCRequest.h和SCRequest.m,我相信你会找到你想要的