手順は3つ
UITextViewDelegateを継承し
ViewController: UIViewController, UITextViewDelegate {
リアルタイムで文字数カウントをしたいUITextViewにdelegate設定
commentTextView.delegate = self
メソッドtextViewDidChange内に記述
func textViewDidChange(_ textView: UITextView) {
let commentNum = commentTextView.text.count
commentNumLabel.text = String(commentNum)
}