seventhwonder回答ポイント 80ptウォッチ

setAnimationDidStopSelectorについて教えてください(iPhone SDK)


以下のようなコードを組んでいるのですが、setAnimationDidStopSelectorで指定したendDropPartメソッドの中で、どうやってアニメーションさせるオブジェクトを指定するか悩んでいます。iPhone SDKは初心者です。どなたかご教授いただけないでしょうか?

-(void)endDropPart{
/*
[下のメソッドのrrecieverが指すボタン setAlpha:1.0f];
*/
NSLog(@"endAnim");
}

- (void)DropPart:(UIButton *)reciever {

[player play];

CGFloat y = [reciever center].y;

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5f];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(endDropPart)];

[reciever setCenter:CGPointMake([reciever center].x, y+150)];
[reciever setAlpha:0.0f];

[UIView commitAnimations];

}

※ 有料アンケート・ポイント付き質問機能は2023年2月28日に終了しました。
ログインして回答する

ベストアンサー

その他の回答

この質問へのコメント

コメントはありません

この質問への反応(ブックマークコメント)

質問の情報

登録日時
2010-09-26 07:56:38
終了日時
2010-10-03 08:00:03
回答条件
回答にURL必須 1人2回まで

この質問のカテゴリ

この質問に含まれるキーワード

iPhone SDK14nil38メソッド515オブジェクト658アニメーション326

人気の質問

メニュー

PC版