我已经在数组中存储了几个句子:
let sentences = ["This is example 2","This is the second example", "The last example"]
其中一个字符串应随机显示在TextView中。 你能帮我解决一下我如何用Swift做到这一点吗?
答案 0 :(得分:0)
我正在回答这个问题,记住一般方法。我不记得你正在编写的编程语言。牢记时间因素。从系统中获取时间戳(以毫秒为单位)并采用3的mod,这样您将始终在[0,1,2]中获得一个随机数
index = timestamp_in_milliseconds % 3
sentences[index]