iphone - self.view 转换可以动画吗?

Posted

技术标签:

【中文标题】iphone - self.view 转换可以动画吗?【英文标题】:iphone - Can self.view transitions be animated? 【发布时间】:2010-02-18 17:56:32 【问题描述】:

下面的代码来自另一篇 SO 帖子,我的问题是使用此方法从一个视图到下一个视图的转换是否可以动画,如果可以,如何?

// origView is an instance variable/IBOutlet to your original view.
- (IBAction)switchToPhoneView:(id)sender 
  if (origView == nil)
    origView = self.view;
  self.view = phoneViewController.view;


- (IBAction)switchToOriginalView:(id)sender 
  self.view = origView;

【问题讨论】:

【参考方案1】:

听起来this Apple example 可能就是您要找的东西。

【讨论】:

以上是关于iphone - self.view 转换可以动画吗?的主要内容,如果未能解决你的问题,请参考以下文章

取消 UIView 动画 - self.view.layer removeAllAnimations 不起作用

如何用动画取消隐藏 UIView

ios动画中的黑色背景

在使用自动布局下动画/移动视图

iPhone:在 Instagram 上上传图片

将 UITable 中 UITableViewCell 中子视图中对象的 CGRect 转换为相对于 self.view 的 CGRect