我剛剛開始學習Swift。我觀看了一個關於基本swift編程入門的視頻,並將教師代碼直接複製到我的Xcode中。但是,我的代碼中出現錯誤,他沒有收到。我三重檢查了我做了同樣的事情。代碼如下。最後一行給出了主題中的錯誤。Swift Error:無法用列表類型'(String)'的參數調用'append'
var items:[String] = []
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
@IBAction func additem(sender: AnyObject) {
if (txtinput.text! == ""){
return
}
items.append(txtinput.text!)
txtoutput.text = ""
for item in items {
txtoutput.text.append("\(item)\n")
什麼版本的Xcode和你使用的是什麼版本的Swift? – rmaddy
什麼是'txtoutput'? –