gpt4 book ai didi

ios - 在 Swift 中使用 SDWebImage 问题

转载 作者:搜寻专家 更新时间:2023-10-31 08:34:20 24 4
gpt4 key购买 nike

我正在尝试快速使用 SDWebImage,喜欢使用的文件 ID 称为 UIImageView+WebCache.h

我使用

将它添加到我的桥接 header 中
#import "UIImageView+WebCache.h"

现在我正在尝试使用以下方法快速加载该文件:

var webCah = UIImageView+WebCache()

我收到一条错误消息:

Use of unresolved identifier 'WebCache'

我相信它认为我在尝试使用 uiimageview,而我只是在尝试使用那个 objective-c 类

如何正确调用该类?

最佳答案

UIImageView+WebCache 是使用 SDWebImage 特定方法扩展功能 UIImageView 的类别。您需要在 UIImageView 对象上访问其中定义的方法。

示例代码:

var imageView :UIImageView = UIImageView() // example, this will probably come from elsewhere in your app
imageView.sd_imageURL
// Or

imageView.sd_cancelCurrentImageLoad

查看文档以了解可用的方法,或来源 https://github.com/rs/SDWebImage/blob/master/SDWebImage/UIImageView%2BWebCache.h

关于ios - 在 Swift 中使用 SDWebImage 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26739201/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com