mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-21 18:48:45 -04:00
22 lines
796 B
Objective-C
22 lines
796 B
Objective-C
//
|
|
// AlderisSDKCompatibility.h
|
|
// Alderis
|
|
//
|
|
// Created by Adam Demasi on 3/10/20.
|
|
// Copyright © 2020 HASHBANG Productions. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
|
|
#ifndef __IPHONE_14_0
|
|
// Allows building with the iOS 13 SDK while retaining iOS 14 compatibility.
|
|
|
|
@interface UIControl ()
|
|
|
|
- (void)addAction:(UIAction *)action forControlEvents:(UIControlEvents)controlEvents NS_SWIFT_NAME(addAction(_:for:)) API_AVAILABLE(ios(14.0));
|
|
- (void)removeAction:(UIAction *)action forControlEvents:(UIControlEvents)controlEvents NS_SWIFT_NAME(removeAction(_:for:)) API_AVAILABLE(ios(14.0));
|
|
- (void)removeActionForIdentifier:(UIActionIdentifier)actionIdentifier forControlEvents:(UIControlEvents)controlEvents NS_SWIFT_NAME(removeAction(identifiedBy:for:)) API_AVAILABLE(ios(14.0));
|
|
|
|
@end
|
|
#endif
|