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

时间:2015-09-12 10:06:38

标签: objective-c ios9 xcode7 asyncimageview

我正在使用iOS 8.x.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中使用相同的代码,它只显示ActivityIndi​​cator并且不会加载任何图片。

我正在使用此库:AsyncImageView

1 个答案:

答案 0 :(得分:0)

asyncimageview使用在ios9中折旧的NSURLConnections。