0

I am using following code for iOS 8.x.x xcode 6.4 and it is working fine;

        AsyncImageView *categoryview = [[AsyncImageView alloc]initWithFrame:CGRectMake(0, 0, Cate.frame.size.width, Cate.frame.size.height)];
        categoryview.imageURL = [NSURL URLWithString:[ImageURLs objectAtIndex:j]];
        categoryview.showActivityIndicator = YES;
        categoryview.showProgressView = YES;
        [Cate addSubview:categoryview];

and if I use the same code in iOS 9.0 xcode 7, it is only showing ActivityIndicator and doesn't load any picture.

I am using this Library: AsyncImageView

Samraan Khaan
  • 480
  • 4
  • 13

1 Answers1

0

asyncimageview uses NSURLConnections which is depreciated in ios9.

Matrix
  • 7,477
  • 14
  • 66
  • 97