2015-02-01 3 views

답변

1

나는 애니메이션을 만들기 위해 WKInterfaceImage를 사용하고 있습니다. 예를 들어 애니메이션 처리 시간이 2 초인 WKInterfaceImage가 있습니다. 그래서 다음과 같은 지연 함수를 사용하여 2 초 후에 애니메이션을 시작하고 중지 할 수 있습니다.

self.animateImage.startAnimating()//Start animate the image 
//delay function in 2 seconds, after 2 seconds and we will stop the animated image 
     dispatch_after(dispatch_time(
      DISPATCH_TIME_NOW, 
      Int64(2 * Double(NSEC_PER_SEC)) 
      ), dispatch_get_main_queue(), {() -> Void in 
       self.animateImage.stopAnimating() 
       //you can write some function in here after finish the anim 
     }) 
+0

나는 또한 똑같은 일을하고 있지만 정확하지는 않습니다. –