mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
37 lines
805 B
Objective-C
37 lines
805 B
Objective-C
//
|
|
// 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
|
|
|