gpt4 book ai didi

swift - 如何保存结构体的条目

转载 作者:行者123 更新时间:2023-11-30 12:06:30 28 4
gpt4 key购买 nike

现在我的代码打印输入的结构,但它只能打印输入的最后一个单独条目。它只能存储 1 个条目。如何存储和打印结构中的每个条目。

@IBAction func press(_ sender: Any) {
contacts.append(Person(name: a.text!, surname: b.text! , phone: Int(c.text!)!))
print(self.contacts.description)
}

struct Person {
var name: String
var surname: String
var phone: Int
}

最佳答案

您可以创建一个人员数组,并在有人按下按钮时将其追加到该数组中。下面是来自 Swift Playground 的示例。

struct Person {
var name: String
var surname: String
var phone: Int
}
var contacts = [Person]()

func press(name: String, surname: String, phone: Int) {
contacts.append(Person(name: name, surname: surname, phone: phone))
print(contacts.description)
}

press(name: "Aks", surname: "Homes", phone: 123)
press(name: "Harry", surname: "Potter", phone: 124)
press(name: "Ron", surname: "Weisly", phone: 345)
press(name: "Shan", surname: "Wate", phone: 456)

关于swift - 如何保存结构体的条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46624098/

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