旧的swift代码无效(动画UIView)

时间:2016-02-12 11:35:56

标签: ios swift animation uiview

我发现这个代码负责动画UIView,但不幸的是代码不起作用,我无法弄清楚原因(可能是旧版本的swift)

这是代码:

(这是根据创作者的辅助功能)

func moveView(#view:UIView, toPoint destination:CGPoint, completion☹()->())?) {
 //Always animate on main thread
 dispatch_async(dispatch_get_main_queue(), { () Void in 
   //Use UIView animation API
   UIView.animateWithDuration(1.0, delay: 0.0, usingSpringWithDamping:    
    0.6, initialSpringVelocity: 0.3, options:          
    UIViewAnimationOptions.AllowAnimatedContent, animations: { () -> 
    Void in 
           //do actual move
           view.center = destination
    }, completion: { (complete) -> Void in
           //when animation completes, activate block if not nil
           if complete {
              if let c = completion {
                 c()
              }
           }
    })
 })
}

这是动画

//Create your face object (Just a UIImageView with a face as the image
var face = Face();
face.frame = CGRect(x: 0, y: 0, width: 50, height: 50)
//find our trajectory points
var center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2);
var left = CGPointMake(center.x *-0.3, center.y)
var right = CGPointMake(center.x *2.2, center.y)
//place our view off screen
face.center = right
self.view.addSubview(face)
//move to center
moveView(view: face, toPoint: center) { () -> () in
  //Do your Pop
  face.pop()
  // Move to left
  moveView(view: face, toPoint: left, completion: { () -> () in
  }
}

我引用代码的创建者

  

常规步骤:在屏幕右边创建一个新面孔。使   脸部可见。将脸部移动到屏幕中间。弹出   face使用下一个面开始处理。将第一张脸移到   一旦新面孔到达中间就离开了。

     

实际幻灯片动画再一次,我们将在此处执行以下操作:移动   在右侧查看屏幕移动到中心弹出向左移动

     

要获得重复效果,只需在计时器上调用此方法

和摘要:

  

UIView的动画API非常强大。流行和运动   动画使用取决于此API。如果你坚持尝试   创建动画,UIView动画块通常是个好地方   启动。

注意:我是IOS开发的初学者,如果有人能为我解释代码

1 个答案:

答案 0 :(得分:0)

确实这个moveView方法有一些问题,一个是为Swift 1编写的(但也有一些错别字,错误的字符和无用的操作)。

这是固定版本:

func moveView(view view:UIView, toPoint destination: CGPoint, afterAnim: ()->()) {
 //Always animate on main thread
 dispatch_async(dispatch_get_main_queue(), { () -> Void in
   //Use UIView animation API
   UIView.animateWithDuration(1.0, delay: 0.0, usingSpringWithDamping:
    0.6, initialSpringVelocity: 0.3, options:
    UIViewAnimationOptions.AllowAnimatedContent, animations: { () -> Void in
           //do actual move
           view.center = destination
    }, completion: { (complete) -> Void in
           //if and when animation completes, callback
           if complete {
              afterAnim()
           }
    })
 })
}

您现在可以这样使用它:

moveView(view: face, toPoint: center) {
    //Do your Pop
    face.pop()
    // Move to left
    moveView(view: face, toPoint: left) {
        // Do stuff when the move is finished
    }
}

观察你的版本和我的版本之间的差异,以了解什么是过时/错误以及我如何修复它。如果你被困住了,我会帮忙的。