2011-12-22 4 views
0

からカール、私はこのコードを持っている:IOS:右

- (IBAction)open:(id)sender{ 
[UIView beginAnimations:nil context:NULL]; 
[UIView setAnimationDuration:1]; 
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES]; 


[splash removeFromSuperview]; 

[UIView commitAnimations]; 

} 

私はImageViewの「スプラッシュ」を持っていると私はIBActionでそれを削除しますが、私の問題は、それが左からスプラッシュを削除することであり、私がしたいですそれを右から取り除いて、私は何ができますか?

答えて

0

iOSにUIViewAnimationTransitionCurlRightもLeftもありません。

IOS5プロジェクトでは、iBooks Appと同様に機能する新しいUIPageViewControllerを使用できます。

あなたがリンクをここに私の答えを見ることができます - あなたがここにこのカールを設定するための回避策を見つけることができ、他のバージョンのPage curl - Leaves Project - Interaction elements

I want to use animation to imageview using UIanimationtransitioncurl right or left. Is it possible?

グッドラック

関連する問題