0

我刚刚问了这个问题在后台运行代码并获取返回码

我在执行后台任务时使用了带有活动指示器的 UIAlertView,最终代码:

    -(void)isConnectedToInternet:(void (^)(BOOL))block
{
    palert = [[UIAlertView alloc]initWithTitle:@"Comprobando conexión a internet" message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
    [palert show];

    if(palert != nil) {
        UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

        indicator.center = CGPointMake(palert.bounds.size.width/2, palert.bounds.size.height-45);
        [indicator startAnimating];
        [palert addSubview:indicator];
    }

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:
                                    [NSURL URLWithString:@"http://www.google.com/"]];

    [request setHTTPMethod:@"HEAD"];

    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
        NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;
        if (block) {
            [palert dismissWithClickedButtonIndex:0 animated:YES];
            block( ([httpResponse statusCode] == 200) ? YES : NO);
        }
    }];

它与 UIAlertView 接受的答案相同的代码,就在这样做之后,我显示了一个新的 UIViewController,它在 ViewDidLoad 上做类似的事情。

    alerta = [[UIAlertView alloc]initWithTitle:@"Descargando..." message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
[alerta show];

if(alerta != nil) {
    UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

    indicator.center = CGPointMake(alerta.bounds.size.width/2, alerta.bounds.size.height-45);
    [indicator startAnimating];
    [alerta addSubview:indicator];
}

很久以前,我使用相同的代码来显示带有活动指示器的 UIAlertView,用于检查互联网连接的第一个警报视图显示良好,但第二个没有...

图片

如果两者的代码完全相同,我真的无法理解为什么第一个在alerView 内显示指示器,第二个在alerView 外部显示它。

这仅在添加第一个 UIAlertView 之后才会发生,然后才添加它运行良好。

我真的坚持这个我找不到解决方案。

有人有什么想法吗?

编辑

简单的方法解决方案,我只是硬编码它。

是的,alert.frame 似乎没有设置,可能类似于这个问题:问题

indicator.center = CGPointMake(140, 70);
4

1 回答 1

0

检查MBProgressHud

UIActivityIndi​​catorView 和 MBProgressHUD (@mobile.tutsplus.com)

并且

MBProgressHUD (@github.com)

它可能会帮助你。

于 2013-05-23T11:22:52.897 回答