gpt4 book ai didi

swift - 添加和增加文本字段输入的数字

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

我正在开发一个具有批处理组件的软件。您可以为每个要创建的对象插入一个名称,并且可以根据给定的信息选择要创建的对象数量。

如果您将对象命名为 test创建它 50 次,您将有 50 个或更多名为 test 的对象。我想要实现的是得到testtest-1test-2test-3 等。你知道我的意思 ^^

标题/名称来自 UITextField 作为字符串,数量也来自那里作为整数。

我的类(class):

class Device: NSObject {

var name: String = ""
var uuid: String = ""
var online: Bool = false
var autoStart: Bool = false

我的方法:

// create new devices based on data from modal
var devices = [Device]()
let quantityDevices = quantityData.intValue

for _ in 0...quantityDevices-1 {

let newDevice = Device()
print("created new device")

newDevice.name = titleData.stringValue
devices.append(newDevice)
}

有什么办法可以实现吗?

最佳答案

for 中使用变量并将其作为字符串附加到名称中。

for i in 0...quantityDevices-1 {

let newDevice = Device()
print("created new device")

newDevice.name = titleData.stringValue + "-\(i)"
devices.append(newDevice)
}

关于swift - 添加和增加文本字段输入的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40636017/

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