开发者

iPhone: Flipping View like the Weather App?

开发者 https://www.devze.com 2022-12-18 12:18 出处:网络
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.

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

精彩评论

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

关注公众号