123456789101112131415161718192021222324252627282930313233343536 |
- //
- // LOTAnimationView_Compat.h
- // Lottie
- //
- // Created by Oleksii Pavlovskyi on 2/2/17.
- // Copyright (c) 2017 Airbnb. All rights reserved.
- //
- #if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
- #import <UIKit/UIKit.h>
- @compatibility_alias LOTView UIView;
- #else
- #import <AppKit/AppKit.h>
- @compatibility_alias LOTView NSView;
- typedef NS_ENUM(NSInteger, LOTViewContentMode) {
- LOTViewContentModeScaleToFill,
- LOTViewContentModeScaleAspectFit,
- LOTViewContentModeScaleAspectFill,
- LOTViewContentModeRedraw,
- LOTViewContentModeCenter,
- LOTViewContentModeTop,
- LOTViewContentModeBottom,
- LOTViewContentModeLeft,
- LOTViewContentModeRight,
- LOTViewContentModeTopLeft,
- LOTViewContentModeTopRight,
- LOTViewContentModeBottomLeft,
- LOTViewContentModeBottomRight,
- };
- #endif
|