我正在使用以下代碼用於iOS 8.x.x xcode 6.4並且它工作正常;AsyncImageView未在iOS 9.0中加載圖像xcode 7+
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
我也有這個問題。找到解決方案了嗎? – user3746428