UIPasteboard+FLEX.h 304 B

1234567891011121314151617
  1. //
  2. // UIPasteboard+FLEX.h
  3. // FLEX
  4. //
  5. // Created by Tanner Bennett on 12/9/19.
  6. // Copyright © 2020 FLEX Team. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIPasteboard (FLEX)
  10. /// For copying an object which could be a string, data, or number
  11. - (void)flex_copy:(id)unknownType;
  12. @end