私は次のエラーが発生します: "値に割り当てることはできません: '単語'は 'let'定数です 私はこれがなぜ起こるか把握できません。 誰かが私を助けることができたら、私はそれをたくさんいただきたいと思います。ここで 値に割り当てることができません: '単語'は 'let'定数です
はコードです:import UIKit
class ViewController: UIViewController {
var word1 = ""
@IBOutlet weak var label: UILabel!
func writeWord(word: String){
word = "Example"
}
@IBAction func button(sender: AnyObject) {
writeWord(word1)
label.text = word1
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
をあなたの 'writeWord'方法で達成するために、正確に何をしようとしている。
は、あなたがしたいですか? – Hamish
今ここでやりたいことが分かっているのかどうか分かりません –