私のUITextViewのテキストの設定に問題があります。私のtextViewは私のstoryBoardに接続されています。私は自分のアウトレットを作成するためにドラッグを制御します。UITextViewはテキストを設定しません
import UIKit
class ViewController: UIViewController, UITextViewDelegate {
@IBOutlet weak var textView: UITextView!
override func viewDidLoad() {
super.viewDidLoad()
textView.delegate = self
// Do any additional setup after loading the view, typically from a nib.
textView.text = "hello"
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func textViewDidChange(_ textView: UITextView) { //Handle the text changes here
print(textView.text); //the textView parameter is the textView where text was changed
}
}
私はシミュレータ上のビューコントローラに表示されますが、代わりに、私はちょうど空白の画面を持っているために、文字列「こんにちは」を期待しました。なぜ文字列が見えないのですか?
詳しく説明してください:あなたは何を期待していますか?実際の結果は "それは働いていないようです"とは何ですか? – shallowThought
https://github.com/bryanjcampbell1/practiceTextField –
あなたのテキストフィールドに制約を設定しておらず、見えません。ストーリーボードには赤い線が表示され、それに応じてエラーが表示されます。あなたのエラーを無視しないでください。 – shallowThought