活动指示器未显示在图像上

时间:2014-02-26 12:13:16

标签: ios iphone activity-indicator

您好我正在尝试将图片从iphone上传到服务器,因为我给用户提供了活动指示器,知道图片正在上传,点击上传时会显示活动指示器几分钟。

但是我的问题是活动指示器只显示在少数图像中它没有显示在所有图像上请告诉我如何解决这个问题。

我的活动编码。

-(void)temp{
    spinner = [[UIActivityIndicatorView alloc initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
    //spinner = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:]
     spinner.frame = CGRectMake(0.0, 0.0, 40.0, 40.0);
    [spinner setCenter:CGPointMake(160, 240)]; // (mid of screen) I do this because I'm in landscape mode
    [self.view addSubview:spinner];
    spinner.color = [UIColor blackColor];
    spinner.backgroundColor = [UIColor colorWithWhite:0.2 alpha:0.4];
    [spinner startAnimating];
    [spinner release];
}

-(void) myMethod{
    [spinner stopAnimating];
    spinner.hidden = YES;
    spinner.color = [UIColor yellowColor];
}

- (IBAction)pushUpload:(id)sender {

    [self temp];
    [self performSelector:@selector(myMethod) withObject:nil afterDelay:5.0f];

}

1 个答案:

答案 0 :(得分:0)

而不是ActivityIndi​​cator使用AsynchronousImageView它会在加载图像时自动添加activityindicator。
[AsynObj loadImageFromURL:[NSURL URLWithString:ImageUrl]];

您可以从以下链接https://github.com/nicklockwood/AsyncImageView

获取AsyncImageView类


我希望它会有所帮助!