[ios] Removed annoying deprecation warnings

TODO: investigate the reason behind them and fix properly.
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-06-25 10:25:20 +02:00 committed by Viktor Govako
parent f27a7d41a1
commit a290f9145d
2 changed files with 49 additions and 49 deletions

View file

@ -4,38 +4,38 @@ NS_ASSUME_NONNULL_BEGIN
@interface UIColor (MapsMeColor)
+ (UIColor *)blackPrimaryText __attribute__ ((deprecated));
+ (UIColor *)blackSecondaryText __attribute__ ((deprecated));
+ (UIColor *)blackHintText __attribute__ ((deprecated));
+ (UIColor *)red __attribute__ ((deprecated));
+ (UIColor *)white __attribute__ ((deprecated));
+ (UIColor *)primary __attribute__ ((deprecated));
+ (UIColor *)pressBackground __attribute__ ((deprecated));
+ (UIColor *)linkBlue __attribute__ ((deprecated));
+ (UIColor *)linkBlueHighlighted __attribute__ ((deprecated));
+ (UIColor *)buttonRed __attribute__ ((deprecated));
+ (UIColor *)blackDividers __attribute__ ((deprecated));
+ (UIColor *)whitePrimaryText __attribute__ ((deprecated));
+ (UIColor *)whitePrimaryTextHighlighted __attribute__ ((deprecated));
+ (UIColor *)whiteHintText __attribute__ ((deprecated));
+ (UIColor *)buttonDisabledBlueText __attribute__ ((deprecated));
+ (UIColor *)blackOpaque __attribute__ ((deprecated));
+ (UIColor *)bookingBackground __attribute__ ((deprecated));
+ (UIColor *)opentableBackground __attribute__ ((deprecated));
+ (UIColor *)transparentGreen __attribute__ ((deprecated));
+ (UIColor *)speedLimitRed __attribute__ ((deprecated));
+ (UIColor *)speedLimitGeen __attribute__ ((deprecated));
+ (UIColor *)speedLimitWhite __attribute__ ((deprecated));
+ (UIColor *)speedLimitLightGray __attribute__ ((deprecated));
+ (UIColor *)speedLimitDarkGray __attribute__ ((deprecated));
+ (UIColor *)blackPrimaryText;
+ (UIColor *)blackSecondaryText;
+ (UIColor *)blackHintText;
+ (UIColor *)red;
+ (UIColor *)white;
+ (UIColor *)primary;
+ (UIColor *)pressBackground;
+ (UIColor *)linkBlue;
+ (UIColor *)linkBlueHighlighted;
+ (UIColor *)buttonRed;
+ (UIColor *)blackDividers;
+ (UIColor *)whitePrimaryText;
+ (UIColor *)whitePrimaryTextHighlighted;
+ (UIColor *)whiteHintText;
+ (UIColor *)buttonDisabledBlueText;
+ (UIColor *)blackOpaque;
+ (UIColor *)bookingBackground;
+ (UIColor *)opentableBackground;
+ (UIColor *)transparentGreen;
+ (UIColor *)speedLimitRed;
+ (UIColor *)speedLimitGeen;
+ (UIColor *)speedLimitWhite;
+ (UIColor *)speedLimitLightGray;
+ (UIColor *)speedLimitDarkGray;
+ (UIColor *)colorWithName:(NSString *)colorName __attribute__ ((deprecated));
+ (UIColor *)colorWithName:(NSString *)colorName;
+ (UIColor *)colorFromHexString:(NSString *)hexString;
+ (void)setNightMode:(BOOL)mode;
+ (BOOL)isNightMode;
- (UIColor *)opposite __attribute__ ((deprecated));
- (UIColor *)opposite;
@end

View file

@ -1,29 +1,29 @@
NS_ASSUME_NONNULL_BEGIN
@interface UIFont (MapsMeFonts)
+ (UIFont *)regular10 __attribute__ ((deprecated));
+ (UIFont *)regular12 __attribute__ ((deprecated));
+ (UIFont *)regular13 __attribute__ ((deprecated));
+ (UIFont *)regular14 __attribute__ ((deprecated));
+ (UIFont *)regular16 __attribute__ ((deprecated));
+ (UIFont *)regular17 __attribute__ ((deprecated));
+ (UIFont *)regular18 __attribute__ ((deprecated));
+ (UIFont *)regular24 __attribute__ ((deprecated));
+ (UIFont *)regular32 __attribute__ ((deprecated));
+ (UIFont *)regular52 __attribute__ ((deprecated));
+ (UIFont *)medium10 __attribute__ ((deprecated));
+ (UIFont *)medium14 __attribute__ ((deprecated));
+ (UIFont *)medium16 __attribute__ ((deprecated));
+ (UIFont *)medium17 __attribute__ ((deprecated));
+ (UIFont *)light12 __attribute__ ((deprecated));
+ (UIFont *)bold12 __attribute__ ((deprecated));
+ (UIFont *)bold14 __attribute__ ((deprecated));
+ (UIFont *)bold16 __attribute__ ((deprecated));
+ (UIFont *)bold17 __attribute__ ((deprecated));
+ (UIFont *)bold24 __attribute__ ((deprecated));
+ (UIFont *)bold28 __attribute__ ((deprecated));
+ (UIFont *)bold36 __attribute__ ((deprecated));
+ (UIFont *)semibold16 __attribute__ ((deprecated));
+ (UIFont *)regular10;
+ (UIFont *)regular12;
+ (UIFont *)regular13;
+ (UIFont *)regular14;
+ (UIFont *)regular16;
+ (UIFont *)regular17;
+ (UIFont *)regular18;
+ (UIFont *)regular24;
+ (UIFont *)regular32;
+ (UIFont *)regular52;
+ (UIFont *)medium10;
+ (UIFont *)medium14;
+ (UIFont *)medium16;
+ (UIFont *)medium17;
+ (UIFont *)light12;
+ (UIFont *)bold12;
+ (UIFont *)bold14;
+ (UIFont *)bold16;
+ (UIFont *)bold17;
+ (UIFont *)bold24;
+ (UIFont *)bold28;
+ (UIFont *)bold36;
+ (UIFont *)semibold16;
@end
NS_ASSUME_NONNULL_END