0
我正在嘗試創建此塊。創建一個包含兩個異步請求和完成的塊
+ (void)getUsersAndTracksWithSearch:(NSString *)search withCompletion:(void(^)(NSMutableArray *users, NSMutableArray *tracks)) completion
{
}
我正在使用SoundCloud API。我正在使用他們的API方法獲取曲目和用戶列表。這就是:
[SCRequest performMethod:SCRequestMethodGET
onResource:[NSURL URLWithString:userURL]
usingParameters:nil
withAccount:nil
sendingProgressHandler:nil
responseHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
})];
我用這個方法兩次,獲得兩個答覆,所以我應該怎麼建立一個塊,使得該塊的完成都在我的反應?
感謝