0

このビデオのようなカードを開く必要があるアプリを開発しています。

http://www.youtube.com/watch?v=srnRuhFvYl0&feature=youtu.be

2つのuiview間でこのタイプのアニメーションを作成できるライブラリまたは方法を提案できますか

4

4 に答える 4

1

あなたの効果のためにこのデモを試してみてください。

MPFlipViewController

于 2013-04-22T10:26:35.163 に答える
0

それを試してみてください....

- (IBAction)viewCommentBtnClk:(id)sender
{
ShowCommentViewController *showCommentVC = [[ShowCommentViewController alloc]init];
showCommentVC.buss_id = business_id;
[UIView beginAnimations:@"animation" context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.navigationController.view cache:NO];
[self.navigationController pushViewController:showCommentVC animated:YES];
[UIView commitAnimations];
[self presentModalViewController:showCommentVC animated:YES];
[showCommentVC release];
}

私が助けてくれることを願っています。

于 2013-04-22T12:00:29.323 に答える