iOS 接口更换为https后SDWebImage加载图片

来源:互联网 发布:建造者模式知乎 编辑:程序博客网 时间:2024/05/23 20:03
UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.view.bounds];    [imageView sd_setImageWithURL:[NSURL URLWithString:@"https://192.168.1.189/zlm/upload/zlc/iOSAppContractImage/1484275750873.jpg"] placeholderImage:nil options:SDWebImageAllowInvalidSSLCertificates]; // 主要是这个参数    [self.view addSubview:imageView];

0 0