Fix Xcode 7 build - CAAnimationDelegate is not available there

This commit is contained in:
Jason Zhekov
2016-09-14 11:38:44 +03:00
committed by Panayot Cankov
parent b316bc7260
commit 93d0f3d072

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;