Objective c AsyncImageView未在iOS 9.0 xcode 7中加载图像+

Objective c AsyncImageView未在iOS 9.0 xcode 7中加载图像+,objective-c,ios9,xcode7,asyncimageview,Objective C,Ios9,Xcode7,Asyncimageview,我正在为iOS 8.x.xcode 6.4使用以下代码,它运行良好 AsyncImageView *categoryview = [[AsyncImageView alloc]initWithFrame:CGRectMake(0, 0, Cate.frame.size.width, Cate.frame.size.height)]; categoryview.imageURL = [NSURL URLWithString:[ImageURLs objectAtIn

我正在为iOS 8.x.xcode 6.4使用以下代码,它运行良好

        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];
如果我在iOS 9.0 xcode 7中使用相同的代码,它只显示ActivityIndicator,不加载任何图片


我正在使用这个库:

asyncimageview使用NSURLConnections,这在ios9中被折旧了。

我也遇到了这个问题。找到解决办法了吗?