私は添付のci-belowとして画像を所有しています!
このアニメーション(ci-below)をロードするローダーを作りたいです!
私はこれに使用するコードの小さなアイデアを持っていますが、うーん、この問題についてあなたの意見を聞かせてください。
クイックコンセプトコード:
[UIView animateWithDuration:1.0f delay:0.0f options: UIViewAnimationCurveLinear animations:^(void) {
//rotate half way (use 179.9 for direction, -179.9 is left)
self.refreshButton.transform = CGAffineTransformRotate(self.refreshButton.transform,179.9*M_PI/180);
} completion:^(BOOL finished) {
//still loading? rotate half again
if ([self.superAwesomeWebView isLoading]) {
[self animateLoadButton];
}
}];