gpt4 book ai didi

swift - 在警报中添加一些文本

转载 作者:行者123 更新时间:2023-11-28 15:24:05 25 4
gpt4 key购买 nike

我有这些代码行:

let myAlert = UIAlertController(title: "Compiti trovati", message: "", preferredStyle: UIAlertControllerStyle.alert);     
let okAction = UIAlertAction(title: "Ok", style: UIAlertActionStyle.default){ action in }
myAlert.addAction(okAction);
self.present(myAlert, animated: true, completion: nil);

如何将警报消息中的代码放入?

for index in 0...arr.count-1 {     
print(MenuViewController.tasksArray[arr[index]].printTask())
}

我想在警报消息中显示数组 arr[] 的所有元素。数组中有 2 个元素:

[
(104 - Interrogazione - Fisica - 10/08/2017 - Yoloooooo)

(115 - Compito - - 10/08/2017 - Commentoooooooo)
]

最佳答案

您可以使用

将字符串数组连接到单个 String
let array = ["a", "b", "c"]
array.joined(separator: ", ") // -> "a, b, c"

要添加具有不同类型的异构数组,您必须将每个对象映射到字符串表示形式,它要求所有对象都符合 CustomStringConvertible

let array : [CustomStringConvertible] = [1, "b", Date()]
array.map{ $0.description }
.joined(separator: ", ")

关于swift - 在警报中添加一些文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45519746/

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