mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-30 12:23:58 -04:00
17 lines
304 B
Objective-C
17 lines
304 B
Objective-C
//
|
|
// UIPasteboard+FLEX.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner Bennett on 12/9/19.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIPasteboard (FLEX)
|
|
|
|
/// For copying an object which could be a string, data, or number
|
|
- (void)flex_copy:(id)unknownType;
|
|
|
|
@end
|