问题标签 [alamofireimage]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
151 浏览

ios - 从主线程中删除 AlamofireImage responseImage

简单地说,我正在尝试使用在服务器上下载图像,AlamofireImage似乎负责此操作的 DataRequest 扩展返回主线程上的内容。

这是有问题的,因为它在继续处理时不可避免地会锁定 UI。

见附图,断点暂停主线程的执行(左侧)

主线程响应

如何迁移此 DataRequest 以使用不是主要的 OperationQueue?

0 投票
2 回答
568 浏览

ios - 有时 alamofireImage 没有加载图像

我用正常的方法试过这个

它在正常通话中工作,但在 AlamofireImage 中没有

0 投票
2 回答
1636 浏览

ios - 使用 alamofire 下载图像 - iOS

我正在使用 Alamofire 从服务器获取数据,然后将它们放入一个CarType对象数组中,这CarType是我的结构。我从服务器得到的是name,idiconUrl. 从 iconUrls 我想下载图标并将它们放入icon. 之后,我将在集合视图中使用icon和。name我的 Alamofire 请求是:

我的结构是:

我想在collectionView中使用它们之前下载图像。我如何下载图像(使用 AlamofireImage)并将它们放在相关的 carType 图标属性中?

0 投票
1 回答
189 浏览

ios - 如何在 Alamofire4 中进行 multipartFormData 上传?

迁移对我来说简直就是一场噩梦。我有以前版本的 Swift/iOS/Alamofire 的旧代码

但是现在 Xcode 给了我一个错误说“对成员'upload(_:to:method:headers) 的模糊引用”但我不知道我是否可以相信这些错误消息,因为 Alamofire 触发调用并且现在抛出了数千个错误,一个例子是encoding: .json现在JSONEncoding.default,但 Xcode 告诉我错误是“函数调用中的额外方法”。所以我尝试了大多数其他错误的解决方案,即切换方法和 url 参数

但这也行不通。我应该如何重写它以使用新的 Swift/Alamofire?

0 投票
0 回答
405 浏览

swift - 使用 Alamofire 发布图像 Swift 3

我正在尝试使用 Alamofire 在 Swift 3 中发布图像。我不确定如何发送参数中指定的图像。我想我需要将照片保存到 POST,对吗?有没有办法不必先保存照片?

0 投票
0 回答
438 浏览

ios - 使用 Almofireimage 在自定义 Tableview 单元格中设置图像

UIImageView我正在使用 Alamofireimage在我的自定义中基于远程 url 设置图像,UITableViewCell但是结果是(1)图像在滚动之前不会设置,(2)即使我使用 StackViews 进行自动布局应用程序中显示的图像大小差异很大。知道我做错了什么吗?

0 投票
2 回答
1383 浏览

ios - 使用 AlamofireImage 设置占位符图像的 contentMode

我正在使用 AlamofireImage,我注意到它具有设置所需图像的内容类型的功能。但是,我看不到设置占位符图像本身的内容类型的可能性。

例如,现在在我cellForRow正在做的方法中:

有没有办法设置例如内容模式=center仅在占位符图像上,同时保持AspectScaledToFillSizeFilter原始图像的内容模式?

0 投票
1 回答
797 浏览

ios - Alamofire4 migration, Apple Mach-O Linker (id) Error

After spending weeks migrating all my Alamofire code to AF4/Swift3, I finally fixed all the complier errors due to Alamofire Function changes, but now when I try to build a I get a whole bunch of these Apple Mach-O errors.

There's at least 29 of them and they all have either Alamofire or AlamofireImage in them (aside from the last one which is "Linker command failed with exit code 1"). I don't have a clue of what to do here, I'll post any extra info needed, can anyone help me out here?

edit: Here are the first 3 errors, I copied only the parts highlighted in red. I will post the full log if necessary but its huge. Maybe this is enough for someone to figure out what's going on, if not, let me know!

All errors are under Undefined symbols for architecture arm64:

--

--

0 投票
1 回答
634 浏览

ios - AlamofireImage 占位符图像在缓存图像之前简要显示 v3.1

我有显示图像列表的表格视图。我觉得我的 tableview 很简单,但是我无法让 af_setImage 正常工作。

当我向上和向下滚动表格时,我会再次看到 placeholderImage 一秒钟左右,然后才会出现正确的图像。

例如,当 tableview 第一次出现时,我可以在列表中看到三个图像。如果我滚动到表格的底部并返回到顶部,我会再次看到 placeholderImage 一秒钟左右。

有任何想法吗?

更新

我将 af_setImage 与 SDWebImage 中的 sd_setImage 交换,现在它按预期工作。

0 投票
1 回答
48 浏览

ios - 如何使用 Alamofire 在 UICollectionView 单元格中使用其标签使图像显示在视图中?

我正在使用 UICollectionView 制作像 AppStore 这样的应用程序,所以从 url 下载数据时

我有这些类作为模型

我在 viewController 中调用featuredAppsviewDidLoad发生的是当视图加载标签出现但图像不在集合视图中时。

我需要滚动每一行以使图像出现。

我不知道问题在哪里???