作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 swift 的新手。我正在用 url 加载图片
mainImageView.setImageWith(URL(string: ("https:" + (content?.imagePath)!)), placeholderImage: nil)
print("dimensions after loading \(String(describing: mainImageView.image?.size))")
如果我打印如上所示的图像尺寸,则尺寸为 21*6.5。但是,如果我等待一段时间然后打印尺寸为 188*109。如何将完成 block 添加到 setImageWith 以便我可以知道图像何时完成加载?
最佳答案
您可以使用 Sdwebimage 通过完成 block 加载图像 https://github.com/rs/SDWebImage
imageView.sd_setImageWithURL(NSURL(string: urlString), completed: {
(image, error, cacheType, url) in
// you can get the image width here...
})
关于ios - setImageWith Url 完成 block swift ios,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45838794/
我的代码无法编译,setImageWith 请求图像在后台加载,或者异步加载。但我遇到了这个编译错误。 “UIImageView”类型的值没有成员“setImageWith” manager.get(
我是 swift 的新手。我正在用 url 加载图片 mainImageView.setImageWith(URL(string: ("https:" + (content?.imagePath)!)
我是一名优秀的程序员,十分优秀!