AFNetworking Post Request с обратной связью JSON - PullRequest
8 голосов
/ 03 октября 2011

Я использую AFNetworking и создаю почтовый запрос, для которого мне требуется json обратная связь. Код ниже работает, однако у меня есть два основных вопроса; где мне выпустить Диспетчер ActivityIndicator? Второй вопрос заключается в том, что этот код правильный, поскольку я новичок, меня путают с блоками, поэтому я действительно хочу знать, правильно ли я делаю это для достижения оптимальной производительности, даже если она работает.

    NSURL *url = [NSURL URLWithString:@"mysite/user/signup"];
    AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];

    AFNetworkActivityIndicatorManager * newactivity = [[AFNetworkActivityIndicatorManager alloc] init]; 
    newactivity.enabled = YES;
    NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
                            usernamestring, @"login[username]",
                            emailstring, @"login[email]",
                            nil];
    NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST" path:@"mysite/user/signup"parameters:params];
    [httpClient release];

    AFJSONRequestOperation *operation = [AFJSONRequestOperation operationWithRequest:request success:^(id json) {

        NSString *status = [json valueForKey:@"status"];  
        if ([status isEqualToString:@"success"]) {
            [username resignFirstResponder];
            [email resignFirstResponder];
            [self.navigationController dismissModalViewControllerAnimated:NO];
        }
        else {
            UIAlertView *alert =[[UIAlertView alloc] initWithTitle:@"Login Unsuccessful"
                                                           message:@"Please try again"
                                                          delegate:NULL 
                                                 cancelButtonTitle:@"OK" 
                                                 otherButtonTitles:NULL];

            [alert show];
            [alert release];
        }

    }

    failure:^(NSHTTPURLResponse *response, NSError *error) {

    NSLog(@"%@", error);
    UIAlertView *alert =[[UIAlertView alloc] initWithTitle:@"Login Unsuccessful"
                                                       message:@"There was a problem connecting to the network!"
                                                      delegate:NULL 
                                             cancelButtonTitle:@"OK" 
                                             otherButtonTitles:NULL];

        [alert show];
        [alert release];


    }];

    NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
    [queue addOperation:operation];
    NSLog(@"check");    


}    

Большое спасибо за вашу помощь заранее:)

Ответы [ 2 ]

8 голосов
/ 19 января 2012

Я знаю, что этот вопрос немного стар, но я все еще хотел внести свой вклад.

Как сказал steveOhh, вы должны использовать [[AFNetworkActivityIndicatorManager sharedManager] setEnabled:YES], чтобы включить индикатор активности сети. Это singleton , и, следовательно, вам не требуется вручную выделять-инициализировать и выпускать. Что касается другого вопроса, я заметил, что вы пропускаете некоторые параметры в своих вызовах блоков, также вы можете сделать это, что намного чище:

NSURL *url = [NSURL URLWithString:@"mysite/user/signup"];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:[NSURLRequest requestWithURL:url] success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    // your success code here
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
    // your failure code here
}];

[operation start]; // start your operation directly, unless you really need to use a queue
2 голосов
/ 09 октября 2011

Почему бы не использовать это вместо этого?

    [[AFNetworkActivityIndicatorManager sharedManager] setEnabled:YES];

Следовательно, нет необходимости выделять и инициализировать

Не могу много сказать о других кодах, только начал изучать цель-C иAFNetworking ..:)

С уважением, Steve0hh

...