2016-06-28 9 views
3

CAKeyframeAnimation에 이상한 오류가 발생했습니다. 이상한 부분은 "SwiftDeferredNSArray doubleValue"입니다. 왜 키 프레임 애니메이션을 처리 할 때 얻을 수 있습니까? 요청에 따라CAKeyframeAnimation doesNotRecognizeSelector

-[_TtCs21_SwiftDeferredNSArray doubleValue]: unrecognized selector sent to instance 0x12b55e060 


*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[_TtCs21_SwiftDeferredNSArray doubleValue]: unrecognized selector sent to instance 0x12b55e060' 


#0 0x0000000182ec0d58 in -[NSObject(NSObject) doesNotRecognizeSelector:]() 
#1 0x0000000182ebddcc in ___forwarding___() 
#2 0x0000000182dbcc6c in _CF_forwarding_prep_0() 
#3 0x0000000185b86b24 in CAObject_setValueForKeyPath_() 
#4 0x0000000185b5b9e0 in -[CALayer setValue:forKeyPath:]() 
#5 0x0000000185c6ebd8 in -[CAKeyframeAnimation applyForTime:presentationObject:modelObject:]() 
#6 0x0000000185b5aabc in CA::Layer::presentation_layer(CA::Transaction*)() 
#7 0x0000000187f68b6c in _UIViewEatsTouches() 
#8 0x0000000187f68830 in -[UIView(Geometry) hitTest:withEvent:]() 
#9 0x000000018823f300 in -[UIView(Geometry) _hitTest:withEvent:windowServerHitTestWindow:]() 
#10 0x0000000187f68e2c in __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke() 
#11 0x0000000182dab954 in __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke() 
#12 0x0000000182dab84c in -[__NSArrayM enumerateObjectsWithOptions:usingBlock:]() 
#13 0x0000000187f68950 in -[UIView(Geometry) hitTest:withEvent:]() 
#14 0x000000018823f300 in -[UIView(Geometry) _hitTest:withEvent:windowServerHitTestWindow:]() 
#15 0x0000000187f68e2c in __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke() 
#16 0x0000000182dab954 in __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke() 
#17 0x0000000182dab84c in -[__NSArrayM enumerateObjectsWithOptions:usingBlock:]() 
#18 0x0000000187f68950 in -[UIView(Geometry) hitTest:withEvent:]() 
#19 0x00000001881f4cc8 in _UIApplicationHandleDigitizerEvent() 
#20 0x0000000187f2aab8 in _UIApplicationHandleEventQueue() 
#21 0x0000000182e703a4 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__() 
#22 0x0000000182e6fe38 in __CFRunLoopDoSources0() 
#23 0x0000000182e6db38 in __CFRunLoopRun() 
#24 0x0000000182d98c60 in CFRunLoopRunSpecific() 
#25 0x000000018466c088 in GSEventRunModal() 
#26 0x0000000187f95fe4 in UIApplicationMain() 
#27 0x00000001001dd614 in main at /Users/MyApp/AppDelegate.swift:20 

추가 코드 :

override func didUpdateFocusInContext(context: UIFocusUpdateContext, withAnimationCoordinator coordinator: UIFocusAnimationCoordinator) { 

    self.opacityView.layer.removeAnimationForKey("a") 

    if (self.focused) 
    { 
     self.opacityView.layer.addAnimation(a1, forKey: "a") 
    } 
} 


// Animation a1 
let ani = CAKeyframeAnimation(keyPath: "transform.scale") 
ani.timingFunctions = [CAMediaTimingFunction(controlPoints: 0.06,0.756,0.223,1.0)] 
ani.values = [[1.0,1.0,1.0],[1.0*scaleFactor,1.0*scaleFactor,1.0*scaleFactor]] 
ani.duration = 0.267 
ani.fillMode = kCAFillModeForwards 
ani.removedOnCompletion = false 
+0

오류가 발생한 부분의 코드를 게시 할 수 있습니까? – J2K

+0

물론, 포커스 업데이트 중에 레이어에 추가하려고합니다. – Chris

답변

0

내가이 조금 늦게 알아,하지만 난 대답을 어쨌든 줄 거라고 생각

나는이 오류, 다음 추적을 얻을 이 오류가 발생하는 다른 사람들을 위해 지금까지 볼 수 있듯이 ani.values은 배열의 배열이 아닌 개별 키 프레임 값의 배열이어야하기 때문에 이것을 보았을 것입니다. 예 :

ani.values = [1.0, 1.0*scaleFactor]