我目前正在学习swift并正在尝试数据结构。在may代码中,我有一些带有名称(String)和几个任务(String of Strings)的例程。这些值在一个结构中。
所以我尝试在初始化后为数组添加另一个值。我的代码实际上正在工作,但我真的觉得它非常奇怪和奇怪,并且不要认为它应该是这样做的。
var routineMgr: routineManager = routineManager();
struct routine{
var name = "Name";
var tasks = [String]();
}
class routineManager: NSObject {
var routines = [routine]();
func addTask(name: String, desc: String){
//init routines with name and an array with certain values, here "Hallo" & "Moin"
routines.append(routine(name: name, tasks: ["Hallo","Moin"]));
//so i just put this part here to make the example shorter, but it would be in ad different function to make more sense
//adding a new value ("Salut") to the tasks array in the first routine
//getting current array
var tempArray = routines[0].tasks;
//appending new value to current value
tempArray.append("Salut");
//replacing old routine with a copy (same name), but the new array (with the appended salut)
routines[0] = routine(name: routines[0].name, tasks: tempArray);
}
}
我尝试了一些(对我而言)“更正确”的方式,例如:
routines[0].tasks.append("Salut");
但我总是遇到很多错误,我也不明白。
现在我的问题是:它是如何正确完成的?为什么第二种方式不起作用?
非常感谢您的帮助和建议!
答案 0 :(得分:4)
您可以创建一个函数来附加结构中的值(这就是我要做的)。您甚至可以使用它来验证值或者在追加之前需要做的任何事情,它还可以返回一个布尔值,让代码知道值是否成功追加
{{1}}
我希望有帮助