IOS: effect curl as maps in iPad

北城以北 提交于 2019-12-11 08:25:30

问题


In iPad maps there is curl effects; I have two questions:

1- what's the way to implement the same effect but I want a total curl and not partial

2- the flap at the bottom right, is only a graphic effect? or I can do it with code?


回答1:


Have you looked at UIPageViewController? It was added in iOS5 and may lead you in the right direction.

There's also a UIViewAnimationTransition which involves a curl, but it goes from one view to another - not really like the map does it.

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView commitAnimations]


来源:https://stackoverflow.com/questions/8603326/ios-effect-curl-as-maps-in-ipad

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!