【问题标题】:AsyncImageView is not loading images in iOS 9.0 xcode 7+AsyncImageView 未在 iOS 9.0 xcode 7+ 中加载图像
【发布时间】:2015-09-12 10:06:38
【问题描述】:

我正在为 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

【问题讨论】:

  • 我也遇到了这个问题。找到解决方案了吗?

标签: objective-c ios9 xcode7 asyncimageview


【解决方案1】:

asyncimageview 使用在 ios9 中已被弃用的 NSURLConnections。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-08-04
    • 2013-09-16
    • 1970-01-01
    • 2012-11-12
    • 1970-01-01
    相关资源
    最近更新 更多