mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
17 lines
337 B
Objective-C
17 lines
337 B
Objective-C
//
|
|
// Created by Oleksii Pavlovskyi on 2/2/17.
|
|
// Copyright (c) 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#if !TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR
|
|
#import "CALayer+Compat.h"
|
|
|
|
@implementation CALayer (Compat)
|
|
|
|
- (BOOL)allowsEdgeAntialiasing { return NO; }
|
|
- (void)setAllowsEdgeAntialiasing:(BOOL)allowsEdgeAntialiasing { }
|
|
|
|
@end
|
|
|
|
#endif
|