开发者

iPhone: Flipping View like the Weather App?

Can someone advise the codes or similar codes for the iPhone weather page, when you touch the little circled (i) the 开发者_StackOverflow中文版right, bottom corner, it flips the page.

Thanks.


In XCode, File -> New Project... -> Utility Application.


What the weather app does is: it just presents a modal view controller, but sets the transition style to a different value. The following assumes the controller you want to show is simply named "controller" and shows the controllers view similarly to the weather app.

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜