mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Fix Xcode 7 build - CAAnimationDelegate is not available there
This commit is contained in:
committed by
Panayot Cankov
parent
b316bc7260
commit
93d0f3d072
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user