このビデオのようなカードを開く必要があるアプリを開発しています。
http://www.youtube.com/watch?v=srnRuhFvYl0&feature=youtu.be
2つのuiview間でこのタイプのアニメーションを作成できるライブラリまたは方法を提案できますか
このビデオのようなカードを開く必要があるアプリを開発しています。
http://www.youtube.com/watch?v=srnRuhFvYl0&feature=youtu.be
2つのuiview間でこのタイプのアニメーションを作成できるライブラリまたは方法を提案できますか
あなたの効果のためにこのデモを試してみてください。
それを試してみてください....
- (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];
}
私が助けてくれることを願っています。