ios_system.h 858 B

1234567891011121314151617181920212223242526272829303132
  1. #import <QuartzCore/QuartzCore.h>
  2. #import <UIKit/UIKit.h>
  3. #import <Metal/Metal.h>
  4. #import <QuartzCore/CAMetalLayer.h>
  5. #import <CoreMotion/CMMotionManager.h>
  6. @interface MyView : UIView <UIKeyInput> {
  7. @private
  8. id<MTLDevice> device;
  9. id<MTLCommandQueue> queue;
  10. id<MTLLibrary> library;
  11. }
  12. - (void)show_keyboard;
  13. - (void)hide_keyboard;
  14. - (CAMetalLayer *)metal_layer;
  15. - (id<MTLDevice>)metal_device;
  16. - (id<MTLCommandQueue>)metal_queue;
  17. - (BOOL)hasText;
  18. - (void)insertText:(NSString *)text;
  19. - (void)deleteBackward;
  20. @end
  21. @interface MyViewController : UIViewController <UIDocumentPickerDelegate, UIDropInteractionDelegate> {}
  22. - (void)loadView;
  23. - (void)setVisible:(BOOL)value;
  24. - (UIRectEdge)preferredScreenEdgesDeferringSystemGestures;
  25. @end
  26. @interface IronSceneDelegate : UIResponder <UIWindowSceneDelegate> {}
  27. @property (strong, nonatomic) UIWindow *window;
  28. @end