なんとかするから、なんとかなる

エンジニア関係のことを書きます

2018-08-20から1日間の記事一覧

自ら調べて、感じて、考える大切さ

エビングハウスの忘却曲線をご存知ですか? 勉強したこと記憶したことは20分後には7割しか覚えていない。翌日には3割しか覚えていない。なのでこまめに復習するんだ。一週間後には復習するんだ。と。 受験生の頃よく、この話を聞いたことがあると思います…

iOS How to rotate a UIView in 360 degrees.

Introduction This article shows how to rotate360 degrees for UIView. First I thought of using UiView.animate method and AffineTransform the UIView. It was figured out that if I set a transform property as below view.transform = CGAffineTra…

iOS UIViewを360度回し続ける

English version below https://hopita.hatenablog.com/entry/2018/08/20/225027 はじめに UIViewは360度回し続けるのは意外と面倒だったので紹介 すぐ思いつく方法 すぐに思いつく方法はUIView.animateで、transformを設定する方法だと思います。 しかしや…