0

我正在从我的数据库中获取一些数据并将其保存到我创建的对象中(称为“ManejadorMateria”)。然后,我希望能够在下一个视图控制器的表格视图中显示这些数据;问题是请求操作需要在前一个视图控制器的prepareforsegue方法上进行,在我需要的数据保存在对象ManejadorMateria上之前调用了表格视图的方法cellForRowAtIndexPath。

在触发 cellForRowAtIndexPath 方法之前,我该怎么做才能获取该数据?

为了向数据库发出请求,我使用以下代码:

-(void)commandWithParams:(NSMutableDictionary*)params onCompletion     (JSONResponseBlock)completionBlock
{
NSMutableURLRequest *apiRequest =
[self multipartFormRequestWithMethod:@"POST"
                                path:kAPIPath
                          parameters:params
           constructingBodyWithBlock: ^(id <AFMultipartFormData>formData) {

           }];

AFJSONRequestOperation* operation = [[AFJSONRequestOperation alloc] initWithRequest:   apiRequest];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
    //success!
    completionBlock(responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    //failure :(
    completionBlock([NSDictionary dictionaryWithObject:[error localizedDescription]   forKey:@"error"]);
}];

[operation start];
}

为了获取我需要的数据,我使用以下代码:

- (void)cargarMateriasDeCarrera:(NSString *)carrera{

Materias = [[NSMutableArray alloc] init];
Manejador = [[ManejadorMateria alloc] init];

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"getMaterias", @"command",
                               carrera, @"carrera",
                               nil];


[[API sharedInstance] commandWithParams:params
                           onCompletion:^(NSDictionary *json) {
                               //handle the response
                               NSDictionary* res = [json objectForKey:@"result"];
                               Materia *materiafuente = [[Materia alloc]init];

                               for (id r in res) {
                                   materiafuente.Nombre = [NSString      stringWithFormat:@"%@",[r objectForKey:@"nombre"]];
                                   materiafuente.Codigo = [NSString stringWithFormat:@"%@",[r objectForKey:@"codigo"]];
                                   materiafuente.Descripcion = [NSString stringWithFormat:@"%@",[r objectForKey:@"descripcion"]];
                                   materiafuente.GradoDificultad = [r objectForKey:@"grado"];
                                   [Materias addObject:materiafuente];

                               }
                               [Manejador setMasterMateriasTodas:Materias];

                                }];


}

最后在同一个视图控制器上的 prepareforsegue 上,我有:

-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{

usuario.Carrera = [carreras objectAtIndex:self.tableView.indexPathForSelectedRow.row];
TablaMateriasViewController3 *tbvc3 = [segue destinationViewController];
tbvc3.usuario = usuario;


NSString *command = @"registraCarrera";
NSMutableDictionary *params =[NSMutableDictionary dictionaryWithObjectsAndKeys:
                              command, @"command",
                              usuario.Carnet, @"carnet",
                              usuario.Carrera, @"carrera",
                              nil];

[[API sharedInstance] commandWithParams:params
                           onCompletion:^(NSDictionary *json) {
                           }];
[self cargarMateriasDeCarrera:usuario.Carrera];
tbvc3.Manejador = Manejador;
}
4

1 回答 1

1

在触发 cellForRowAtIndexPath 方法之前,我该怎么做才能获取该数据。

iOS 是事件驱动的。你不能依赖事物的顺序。你不知道什么时候cellForRowAtIndexPath会被调用。所以,当cellForRowAtIndexPath被调用时,要么你有数据,要么你没有。如果你不这样做,那么你提供一个填充物,或者什么都不提供。如果你这样做,那么你提供数据。

如果您知道您有数据并且希望再次cellForRowAtIndexPath被调用,则调用或相关方法之一(例如)。例如,当您获得一行的数据时,您可以在您的完成方法中调用它。reloadDatareload...reloadRowsAtIndexPaths:withRowAnimation:

在我的书中,我举了一个示例,其中必须下载单元格每一行的图像。起初,每个图像都丢失了。但是当表格视图请求时cellForRowAtIndexPath,图像丢失,我们开始下载该图像。当它到达时,我们刷新该行,然后cellForRowAtIndexPath再次调用 so,现在我们确实有了图像,所以我们提供了图像,它出现在表中:

http://www.aeth.com/iOSBook/ch37.html#_http_requests

完整的可下载示例项目:

https://github.com/mattneub/Programming-iOS-Book-Examples/tree/master/ch37p920downloader/p754p772downloader

您可能可以采用相同的策略。

于 2013-03-31T20:32:52.730 回答