クラスのインスタンスの文字数を.countで調べたいのですがうまくいきません
クラスのインスタンスの文字列の文字数を数える方法はなにかありませんか?
クラスのインスタンスを.countで数えようとやると.countをつかってもインスタンスの中身の文字列がでてきます
swift
1 @IBOutlet weak var tribeA: UITextField! 2 @IBOutlet weak var tribeB: UITextField! 3 4 @IBAction func NameA(_ sender: Any) { 5 playerA.tribeName = tribeA.text! 6 ReadyA.text = tribeA.text 7 8 print(playerA.tribeName) 9 } 10 @IBAction func NameB(_ sender: Any) { 11 playerB.tribeName = tribeB.text! 12 ReadyB.text = tribeB.text 13 14 } 15 16 @IBAction func GameStart(_ sender: UIButton) { 17 NameACount = playerA.tribeName.count 18 NameBCount = playerB.tribeName.count 19 } 20