3

我想制作像 iPhone 5 地图一样的地图卷曲效果。App store 上的许多应用程序已经有这个功能,但我找不到任何好的资源来实现它。请帮我。它应该从卷曲的角开始,当触摸它时它会扩展到屏幕的一半。弯角不是图像。

看看这个参考。 https://www.dropbox.com/sh/d51z86xtb93exc2/yRnbgpz6cc

提前致谢。

4

3 回答 3

1

也许 XBPageCurl 可以帮助你:

https://github.com/xissburg/XBPageCurl/downloads

于 2012-10-04T16:04:24.350 回答
0

我相信它是这样的:

SampleViewController *sampleView =  [SampleViewController new];
[sampleView setModalTransitionStyle:UIModalTransitionStylePartialCurl];
[self presentViewController:sampleView animated:YES completion:^void(){}];
于 2012-10-02T19:47:58.697 回答
-1

它是苹果的 UIPageViewController。 http://developer.apple.com/library/ios/#Documentation/UIKit/Reference/UIPageViewControllerClassReferenceClassRef/UIPageViewControllerClassReference.html

我已经尝试过了,它正在工作。

于 2012-10-03T03:58:59.550 回答