gpt4 book ai didi

ios - swift :How to create dynamic layout from json response iOS

转载 作者:行者123 更新时间:2023-12-01 18:03:45 25 4
gpt4 key购买 nike

我想根据从服务器获取的 json 响应创建动态布局。我对使用带有约束的 View 或使用 tableview 来实现这种布局的方法感到困惑。我研究了另一种方法是制作不同类型的 xib View ,在解析响应后,检查每个元素类型并在 tableview 单元格中调用相应的 View 。我只是想建议我如何以更好的方式创建此布局。

json响应是:

 "data": {
"elementperrowtwo": {
[
{
“fieldid”: “1”,
“fieldtype”: “label”,
“fieldtext”: “OrderDate”,
“fieldcontrolno”: ”1”,
“displaycolumntype”: “2”
},
{
“fieldid”: “2”,
“fieldtype”: “textfield”,
“fieldtext”: “”,
“fieldcontrolno”: ”2”,
“displaycolumntype”: “2”
},
{
“fieldid”: “3”,
“fieldtype”: “label”,
“fieldtext”: “OurReference”,
“fieldcontrolno”: ”1”,
“displaycolumntype”: “2”
},
{
“fieldid”: “4”,
“fieldtype”: “textfield”,
“fieldtext”: “”,
“fieldcontrolno”: ”2”,
“displaycolumntype”: “2”
}
],
"elementperrowone": [
{
“fieldid”: “8”,
“fieldtype”: “label”,
“fieldtext”: “Buyer”,
“fieldcontrolno”: ”1”,
“displaycolumntype”: “1”
},
{
“fieldid”: “9”,
“fieldtype”: “textfield”,
“fieldtext”: “”,
“fieldcontrolno”: ”2”,
“displaycolumntype”: “1”
},
{
“fieldid”: “16”,
“fieldtype”: “dropdown”,
“fieldarray”: [
{
“id”: “1”,
“name”: “australia”
},
{
“id”: “2”,
“name”: “china”
},
{
“id”: “3”,
“name”: “India”
}
],
“fieldcontrolno”: ”3”,
“displaycolumntype”: “1”
}
]
}

最佳答案

实现动态布局的最佳方法是使用堆栈 View 。使用 xib 您可以初始化 View 并将其作为排列的 subview 添加到堆栈 View 中。

首先,您需要创建一个扩展函数,以便您可以重用它。

extension UIView {

func loadFromNib() {
Bundle.main.loadNibNamed(String(describing: type(of: self)), owner: self, options: nil)
}
}

设计完 xib 后,您只需要从 xib 初始化 View 即可使用它。
Bellow 是用于从 xib 初始化 View 的代码。
class FormLabelFieldCell: UIView {
@IBOutlet weak var contentView: UIView!
@IBOutlet weak var lblTitle: UILabel!

override init(frame: CGRect) {
super.init(frame: frame)
commonInit()
}

required init?(coder: NSCoder) {
super.init(coder: coder)
commonInit()
}

func commonInit() {
loadFromNib()
addSubview(contentView)
contentView.frame = self.bounds
contentView.autoresizingMask = [.flexibleWidth,.flexibleHeight]
}

}

您可以将其添加为 subview
let cell = FormLabelFieldCell()
mainStack.addArrangedSubview(cell.contentView)

关于ios - swift :How to create dynamic layout from json response iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60632318/

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