iOS Swift在UILabel.text中按字符串数组逐字符显示

时间:2015-11-22 19:07:33

标签: ios arrays string swift

我是一个包含多个字符串的数组,构成一个故事。我想知道如何逐字母显示字符串,如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
}

提前谢谢

0 个答案:

没有答案