Add jailbroken iPhone MCP screen app

This commit is contained in:
Adolfo Reyna
2026-06-21 21:25:55 -04:00
parent 8dbc5f4c7b
commit ad30662a48
21 changed files with 2206 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
#import <UIKit/UIKit.h>
@interface IMCCanvasView : UIView
- (void)clearWithColor:(NSInteger)color;
- (void)drawText:(NSString *)text x:(CGFloat)x y:(CGFloat)y size:(NSInteger)size;
- (void)drawImageData:(NSData *)data x:(CGFloat)x y:(CGFloat)y;
- (void)displayMonochromeFrameBuffer:(NSData *)frameData;
- (BOOL)displayRGB565FrameBuffer:(NSData *)frameData width:(NSUInteger)width height:(NSUInteger)height;
- (NSString *)snapshotPNGBase64;
@end