我是一个包含多个字符串的数组,构成一个故事。我想知道如何逐字母显示字符串,如this。我还想这样做,如果他们在字符串加载完成之前按下按钮,它会显示整个字符串。就像游戏一样。
我最好将其作为一个功能,因为我要使用这几百次。我正在使用Swift 2.0。
let myArray = [
"This is my first index",
"This is my second index",
"This is my third index",
"...and so on and so forth..."
]
var i : Int = 0
@IBAction func storyButtonAction(sender: AnyObject) {
storyLabel.text = myArray[i] // Would like to display array index letter by letter when the button is pressed.
i++ //Loading next index in myArray
}
提前谢谢