- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在 swift 中使用 WebCache
。
当我像下面这样直接将String
设置为sd_setImageWithURL
时,它显示正确。
imageView?.sd_setImageWithURL(NSURL(string: "http://imgfp.hotp.jp/IMGH/86/49/P018678649/P018678649_238.jpg"), placeholderImage: nil, options: SDWebImageOptions.CacheMemoryOnly, completed: {[unowned self] (image: UIImage!, error: NSError!, type: SDImageCacheType, url: NSURL!) -> Void in
....
但是,我设置如下,不显示..
if let imageURL:String = shop.img {
print(imageURL) // same as above
self.imageView?.sd_setImageWithURL(NSURL(string: imageURL), placeholderImage: nil, options: SDWebImageOptions.CacheMemoryOnly, completed: {[unowned self] (image: UIImage!, error: NSError!, type: SDImageCacheType, url: NSURL!) -> Void in
....
}
怎么了??
最佳答案
很简单:
if let strImage = "http://imgfp.hotp.jp/IMGH/86/49/P018678649/P018678649_238.jpg"{
self.imageView.sd_setImageWithURL(NSURL(string: strImage), completed: { (img, error, type, urls) in
})
}
使用imageView.image
显示任何你想要的地方。
关于ios - 关于 WebCache 的 sd_setImageWithURL with swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31600254/
using System.Web.Helpers 假设我添加了那些.. WebCache.Set("apple_1","some value") WebCache.Set("apple_2","som
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this qu
我在使用 angularjs 和 googlecache 时遇到问题。当使用谷歌缓存访问我的页面时,进入控制台时出现下一个错误: Uncaught TypeError: Cannot read pro
当我导入了 SDWebImage框架到我的项目中。 我收到 2 条警告消息。 他们都说'Duplicate definition of category "WebCache" on interface
我对 ios 开发相当陌生 - 尝试在我的 iphone 项目中使用 sdwebimage。我相信我已按要求完成了所有基本设置。但是当我构建时,我收到此错误:此行附近没有这样的文件文件或目录: #im
找人验证一下这个方法好不好。假设我有一个在 tomcat 上运行的网络应用程序 A。通过在同一个 tomcat 上部署一个 webcache web 应用程序。这是否会降低我的网络应用程序因网络访问者
我在 swift 中使用 WebCache。 当我像下面这样直接将String设置为sd_setImageWithURL时,它显示正确。 imageView?.sd_setImageWithURL(N
我正在寻找(如果可能的话)详细解释为什么会发生以下事情: 我正在使用 asp.net 的 WebCache 静态类来存储我的对象 public ActionResult Index(int pa
我正在尝试在我的 iPhone 应用程序中使用 SDWebImage。我按照分步教程将 SDWebImage 安装到我的 Xcode 项目中。 当我尝试构建我的应用程序时,出现以下错误: Lexica
这个场景有点具体和棘手。有一个使用 ReactJS 和 react-router-dom 构建的用于路由的客户端应用程序。路由非常基本,如下所示。 在 google 索引该站点后
我是一名优秀的程序员,十分优秀!