Recreating iOS 7 Calendar UIView Animation

孤者浪人 提交于 2019-12-04 05:35:34

i might suggest you to create another UIView. Do not add it to the main view yet.

now on the view that you're currently working on,

[UIView transitionWithView: self.view duration: 0.5 options: UIViewAnimationOptionsCurveEaseOut animations:^{
[self.view addSubView:createdView]; } completion:nil];

Hope this works, if you haven't already implemented. I'm a beginner, excuse me if there's any mistake.

S N

I assume we're looking for something similar :-) How to display datepicker like that in iOS 7 calendar UIDatePicker , apologies if its not. @bobnoble has pointed to exact solution. I'm trying to achieve it but I'm new to iOS so bit stuck. Found another link with sample code :-) iOS 7 - How to display a date picker in place in a table view?

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