Last active
February 7, 2020 14:00
-
-
Save Koze/ad83de3ad23225ff90d2212d0dedc2af to your computer and use it in GitHub Desktop.
This API seems to be private use. You can directly import header <EventKitUI/UIFont+EKDayOccurrenceView.h>
This file contains hidden or 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
// | |
// UIFont+EKDayOccurrenceView.h | |
// EventKitUI | |
// | |
// Created by harry-dev on 4/18/19. | |
// Copyright © 2019 Apple Inc. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
NS_ASSUME_NONNULL_BEGIN | |
@interface UIFont (EKDayOccurrenceView) | |
@property (nonatomic, readonly, class) UIFont *ek_defaultOccurrenceSecondaryTextFont; | |
+ (UIFont *)ek_defaultOccurrencePrimaryTextFontForSizeClass:(UIUserInterfaceSizeClass)sizeClass; | |
+ (UIFont *)ek_defaultOccurrenceSmallPrimaryTextFontForSizeClass:(UIUserInterfaceSizeClass)sizeClass; | |
@end | |
NS_ASSUME_NONNULL_END |
This file contains hidden or 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
https://developer.apple.com/documentation/uikit/uifont/3255206-ek_defaultoccurrencesecondarytex | |
https://developer.apple.com/documentation/uikit/uifont/3255205-ek_defaultoccurrenceprimarytextf | |
https://developer.apple.com/documentation/uikit/uifont/3255207-ek_defaultoccurrencesmallprimary |
These methods have been deprecated in iOS 13.4 Beta 1.
//
// UIFont+EKDayOccurrenceView.h
// EventKit
//
// Copyright 2019 Apple Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIFont (EKDayOccurrenceView)
@property (nonatomic, readonly, class) UIFont *ek_defaultOccurrenceSecondaryTextFont
API_DEPRECATED("No replacement. This is not intended for third party use and will return nil.", ios(13.0, 13.4))
API_UNAVAILABLE(macos, macCatalyst, watchos);
+ (UIFont *)ek_defaultOccurrencePrimaryTextFontForSizeClass:(UIUserInterfaceSizeClass)sizeClass
API_DEPRECATED("No replacement. This is not intended for third party use and will return nil.", ios(13.0, 13.4))
API_UNAVAILABLE(macos, macCatalyst, watchos);
+ (UIFont *)ek_defaultOccurrenceSmallPrimaryTextFontForSizeClass:(UIUserInterfaceSizeClass)sizeClass
API_DEPRECATED("No replacement. This is not intended for third party use and will return nil.", ios(13.0, 13.4))
API_UNAVAILABLE(macos, macCatalyst, watchos);
@end
NS_ASSUME_NONNULL_END
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Results