0

AFNetworking とこの AFHTTPClient サブクラスを使用して Web サービスから複数の Json リクエストを実装し、テーブル ビューを作成したいと考えています。MainViewController に tableView を作成します。

 #import "AFHTTPClient.h"
        @interface YlyHTTPClient : AFHTTPClient

        + ( YlyHTTPClient *)sharedHTTPClient;
        - (id)initWithBaseURL:(NSURL *)url;
  @end


    #import "YlyHTTPClient.h"

    static NSString * const urlString = @"http://localhost/example/";
    @implementation YplyHTTPClient

    + (YlyHTTPClient *)sharedHTTPClient {
        static YeeplyHTTPClient *_httpClient = nil;
        static dispatch_once_t onceToken;
        dispatch_once(&onceToken, ^{
            _httpClient = [[YlyHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:urlString]];
            [_httpClient setParameterEncoding:AFJSONParameterEncoding];
            [_httpClient registerHTTPOperationClass:[AFJSONRequestOperation class]];
        });

        return _httpClient;
    }

    -(id)initWithBaseURL:(NSURL *)url {
        self = [super initWithBaseURL:url];
        if (!self) {
            return nil;
        }
        [self registerHTTPOperationClass:[AFJSONRequestOperation class]];
        [self setDefaultHeader:@"Accept" value:@"application/json"];
        return self;
    }

まず、これを行う MainViewController から enqueueBatchOfHTTPRequestOperationsWithRequest メソッドを呼び出そうとしました。

 - (void)viewDidLoad
    {
        NSMutableArray *mutableRequests = [NSMutableArray array];
        for (NSString *URLString in [NSArray arrayWithObjects:@"users", @"projects", @"interestedUsers", nil]) {
            [mutableRequests addObject:[[YlyHTTPClient sharedHTTPClient] requestWithMethod:@"GET" path:URLString parameters:nil]];
        }

 [[YlyHTTPClient sharedHTTPClient] enqueueBatchOfHTTPRequestOperationsWithRequests:mutableRequests progressBlock:^(NSUInteger numberOfCompletedOperations, NSUInteger totalNumberOfOperations) {
        NSLog(@"%lu of %lu Completed", (unsigned long)numberOfCompletedOperations, (unsigned long)totalNumberOfOperations);
    } completionBlock:^(NSArray *operations) {
        NSLog(@"Completion: %@", [operations objectAtIndex:1]); 
    }];
        [super viewDidLoad];
}

NSLog から得た出力は次のとおりです。

 Completion: <AFJSONRequestOperation: 0x75dbe60, state: isFinished, cancelled: NO request: <NSMutableURLRequest http://localhost/yeeply_service/api/example/projects>, response: <NSHTTPURLResponse: 0x72cd000>>

(NSMutableRequest は 3 つありますが、ここでは 1 つだけ示します)。

私の最初の質問は、操作 NSArray からデータを取得するにはどうすればよいですか? NSArray に JSON 応答の情報がありませんか? あるとすれば、どうすれば辞書として読めますか?

2 番目の質問は、このメソッドを AFHTTClient サブクラスに実装し、デリゲートを使用して ViewController から呼び出し、ViewController で直接データを受信して​​、このデータを管理し、tableView に設定できるようにすることです。

-(void)enqueueBatchOfHTTPRequestOperationsWithRequests:(NSArray *)urlRequests
                                      progressBlock:(void (^)(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations))progressBlock 
                                    completionBlock:(void (^)(NSArray *operations))completionBlock;

ありがとうございました。

4

1 に答える 1

0

あなたの質問に順番に答えます:

私の最初の質問は、操作 NSArray からデータを取得するにはどうすればよいですか?

responseJSONこれは、コレクション内の各操作のプロパティから取得できます。

for (AFJSONRequestOperation *operation in operations) {
  id JSON = operation.responseJSON;
}

2 番目の質問は、このメソッドを AFHTTClient サブクラスに実装し、デリゲートを使用して ViewController から呼び出し、ViewController で直接データを受信して​​、このデータを管理し、tableView に設定できるようにすることです。

サブクラスで、必要な情報を含むコールバック ブロック パラメーターを使用して新しいメソッドを作成し、バッチ完了ブロックの最後でそのブロックを呼び出します。

于 2013-05-23T16:18:44.107 に答える