II は、StartSpin と StopSpin の 2 つのメソッドを作成したいと考えています。StartSpin では、360 度回転して StopSpin を呼び出すまでループする UIImageView が必要です。
ここまでが私の StartSpin です...
private void StartSpin () {
UIView.Animate (
1,
0,
UIViewAnimationOptions.Repeat,
() => {
CGAffineTransform t = CGAffineTransform.MakeIdentity();
t.Translate(0, 0);
t.Rotate((float)(3.14));
this._imageViewWait.Transform = t;
},
() => {}
);
}
これが私の2つの質問です...
360度回転させるにはどうしたらいいですか?
回転を停止するには、StopSpin メソッドでどのコマンドを使用すればよいですか?
ありがとう
モジョ