普通にリファレンスに書いてあったけど
textView.rText.observe { (text) -> () in
print(text)
}
textView.text = placeholder
コレじゃダメで
textView.rText.observe { (text) -> () in
print(text)
}
textView.rText.value = placeholder
コレが正解
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
普通にリファレンスに書いてあったけど
textView.rText.observe { (text) -> () in
print(text)
}
textView.text = placeholder
コレじゃダメで
textView.rText.observe { (text) -> () in
print(text)
}
textView.rText.value = placeholder
コレが正解
Register as a new user and use Qiita more conveniently
Go to list of users who liked