Fix Xcode 7 build - CAAnimationDelegate is not available there

This commit is contained in:
Jason Zhekov
2016-09-14 11:38:44 +03:00
parent 82ff7aeadc
commit 81165fee3f

View File

@@ -45,7 +45,8 @@ class AnimationDelegateImpl extends NSObject implements CAAnimationDelegate {
public nextAnimation: Function;
static ObjCProtocols = [CAAnimationDelegate];
// The CAAnimationDelegate protocol has been introduced in the iOS 10 SDK
static ObjCProtocols = global.CAAnimationDelegate ? [global.CAAnimationDelegate] : [];
private _finishedCallback: Function;
private _propertyAnimation: PropertyAnimationInfo;