私はUIImageViewオブジェクトを持っています。これをクリックするとアニメーションが再生され、複数のオブジェクトを作るために同じコードを再利用したいと思います。送信者タグを設定して別のオブジェクトを認識させるにはどうすればよいですか?uibutton送信者タグ
.H
- (IBAction)startClick:(id)sender;
.M
- (IBAction)startClick:(id)sender
{
//UIImageView *theButton = (UIImageView *)sender.tag;
bubble.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed: @"Pop_1.png"],
[UIImage imageNamed: @"Pop_2.png"],
[UIImage imageNamed: @"Pop_3.png"], nil];
[bubble setAnimationRepeatCount:1];
bubble.animationDuration = 1;
[bubble startAnimating];
}
(http://stackoverflow.com/questions/1089752/casting-sender-parameter)[Senderパラメータ鋳造]の可能な重複が – kennytm