mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 02:20:07 +00:00
17 lines
323 B
Objective-C
17 lines
323 B
Objective-C
//
|
|
// Created by Oleksii Pavlovskyi on 2/2/17.
|
|
// Copyright (c) 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#if !TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface CALayer (Compat)
|
|
|
|
@property (nonatomic, assign) BOOL allowsEdgeAntialiasing;
|
|
|
|
@end
|
|
|
|
#endif
|