1
UIImageViewsスライドを作成するにはどうすればよいですか?私はボタンと2つのUIImageViews両方のビューで、ボタンが押されたときに2つのUIImageViewsは、2つの側面からビュー上にスライドする必要があります。いくつかの体が私にスタートを与えることができますか?UIImageViewスライドオーバー
UIImageViewsスライドを作成するにはどうすればよいですか?私はボタンと2つのUIImageViews両方のビューで、ボタンが押されたときに2つのUIImageViewsは、2つの側面からビュー上にスライドする必要があります。いくつかの体が私にスタートを与えることができますか?UIImageViewスライドオーバー
[UIView animateWithDuration:durationOfAnimation animations:^{
CGRect imageView1Frame = imageView1.frame;
imageView1Frame.origin.x += 100 //or whatever number of pixels you want to slide them
imageView1.frame = imageView1Frame;
CGRect imageView2Frame = imageView2.frame;
imageView2Frame.origin.x += 100 //or whatever number of pixels you want to slide them
imageView2.frame = imageView2Frame;
}];
ここで、durationOfAnimation
は、どれくらいの時間がかかりますか。