作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 JSON 数据附加到数组。在循环时它不断推送错误,“无法调用初始化程序以类型为参数(id:JSON,标题:JSON,详细信息:String,ImageURL:String)来键入'item''
'Item' 初始值设定项如下所示:导入 UIKit
class Item: NSObject {
var id: String, title: String, detail: String, imageURL: String
init(id: String, title: String, detail: String, imageURL: String) {
self.id = id
self.title = title
self.detail = detail
self.imageURL = imageURL
}
}
最佳答案
你的构造函数期望得到String
并且你正在发送JSON
我猜你正在使用 SwiftyJSON
因此将其编辑为
id : result[i]["id"].stringValue
title : result[i]["title"].stringValue
如果您不使用 SwiftJSON 将其转换为字符串
result[i]["id"] as! String //warning, this is not safe and better with if let
关于ios - 无法为类型 'item' Swift iOS 调用初始值设定项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32164993/
我想成为 Spark 纱客户(link)。是否需要安装hadoop?还是只安装 yarn 可以吗? (by this link) 最佳答案 No Spark不需要Hadoop即可运行。 Apache
我是一名优秀的程序员,十分优秀!