Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个关于视图向上滑动的问题。示例将是 iOS 的联系人应用程序。当您要添加新联系人时,视图会自动向上滑动。你如何做到这一点?谢谢!
查看展示视图控制器和选择过渡样式部分。
http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ModalViewControllers/ModalViewControllers.html
暗示:UIModalTransitionStyleCoverVertical
UIModalTransitionStyleCoverVertical
[self.navigationController presentModalViewController:SOMEVIEW 动画:YES];
SOMEVIEW 只需要是您创建的 uiviewcontroller。您当前的视图还需要一个导航控制器。