画像を追加してラジオボタンやチェックボックスのようにカスタマイズしUIViews
ましたが、私の仕様ではUIAlertView
このようにしたい...
誰でもこれを行う方法を提案できますか? ありがとう!
画像を追加してラジオボタンやチェックボックスのようにカスタマイズしUIViews
ましたが、私の仕様ではUIAlertView
このようにしたい...
誰でもこれを行う方法を提案できますか? ありがとう!
カスタム ビューを設計し、このコードを使用して警告ビューとしてアニメーションを与えることができます
-(void)initialDelayEnded
{
alert_upload.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001);
alert_upload.alpha = 1.0;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1/1.5];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(bounce1AnimationStopped)];
alert_upload.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
[UIView commitAnimations];
}
- (void)bounce1AnimationStopped {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.5/2];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(bounce2AnimationStopped)];
alert_upload.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.9, 0.9);
[UIView commitAnimations];
}
- (void)bounce2AnimationStopped {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.5/2];
alert_upload.transform = CGAffineTransformIdentity;
[UIView commitAnimations];
}
alert_upload は UIView です。
このトピックに関するこれまでの質問はたくさんありますが、そのうちの1つは、カスタムアラートとアクションシートを作成できるこのコンポーネントにリンクしています。始めるのに良い方法かもしれません。
独自のカスタマイズされたアラート ビューを作成できます。ユーザーの操作がない限り、Apple はそれを拒否しません。