-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[+][u][f] Integrated preferences, added logo, made some fixes [Big Co…
…mmit]
- Loading branch information
Showing
168 changed files
with
13,069 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// Created by Oleksii Pavlovskyi on 2/2/17. | ||
// Copyright (c) 2017 Airbnb. All rights reserved. | ||
// | ||
|
||
#include <TargetConditionals.h> | ||
|
||
#if !TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR | ||
#import <Foundation/Foundation.h> | ||
#import <QuartzCore/QuartzCore.h> | ||
|
||
@interface CALayer (Compat) | ||
|
||
@property (nonatomic, assign) BOOL allowsEdgeAntialiasing; | ||
|
||
@end | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// Created by Oleksii Pavlovskyi on 2/2/17. | ||
// Copyright (c) 2017 Airbnb. All rights reserved. | ||
// | ||
|
||
#include <TargetConditionals.h> | ||
|
||
#if !TARGET_OS_IPHONE && !TARGET_OS_SIMULATOR | ||
#import "CALayer+Compat.h" | ||
|
||
@implementation CALayer (Compat) | ||
|
||
- (BOOL)allowsEdgeAntialiasing { return NO; } | ||
- (void)setAllowsEdgeAntialiasing:(BOOL)allowsEdgeAntialiasing { } | ||
|
||
@end | ||
|
||
#endif |
Oops, something went wrong.