如何在带有底部动画的翻转视图中显示mapView中的选项?就像iPhone中的原始地图应用程序一样?像这样:

谢谢!!

最佳答案

将基础视图呈现为模态控制器,并使用过渡样式-部分卷曲。像这样:

controller.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:controller animated:YES];

更新:
在iOS6中,您应该执行以下操作:
SecondeViewController *nextView = [[SecondeViewController alloc] init];
nextView.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentViewController:nextView animated:YES completion:Nil];

10-08 05:25