前回の息を吸って吐く練習はちょっとつまらなくて、

あまりしなかったら、レッスンでの練習時間は前回よりもっと掛かってた

次まではやっぱりもっとちゃんとしなきゃ

 

あとはあくびの声が出せるようになったから、その声で鼻に力を入れる?声をのせる?

全然分からなかったし…できなかった…orz

とにかく、手で触ってみて、鼻がびりびり震えていたらオッケーって感じかな!?

 

あとはやっぱりリズムは上手くできなかった

Youtubeで裏拍を取るといいってよく言ってるから、やってみようかな

レッスンでリズムの練習って結構勿体ない気がする

SF Symbols

Assets.xcassets → New Color Set → Appearances: Any, Light, Dark

Assets.xcassets → New Image Set → Appearances: Any, Light, Dark

                  → Scales: Single Scales

                  → Resizing: Preserve Vector Data

 

protocol UITextFieldDelegate

A set of optional methods to manage the editing and validation of text in a text field object.

 

textFieldShouldReturn(_ textField: UITextField) -> Bool

Asks the delegate whether to process the pressing of the Return button for the text field.

 

textFieldShouldEndEditing(_ textField: UITextField) -> Bool

Asks the delegate whether to stop editing in the specified text field.

(Useful for doing some validation on what the user typed.)

 

textFieldDidEndEditing(_ textField: UITextField)

Tells the delegate when editing stops for the specified text field.

 

All the methods that have the word "should" in the name are asking for permission.