ipu的trunk版ios客户端工程

IPUScreenCapture.h 669B

    // // IPUScreenCapture.h // IPUMobileFunc // // Created by Mac on 2020/3/20. // Copyright © 2020 Asiainfo. All rights reserved. // #import <IPUMobile/IPUMobile.h> @interface IPUScreenCapture : IPUPlugin /* 全屏截屏 参数1:0-文件路径,1-base64编码 */ -(void)fullScreenCapture:(NSArray *)params; /* 无状态栏截屏 参数1:0-文件路径,1-base64编码 */ -(void)noStatusScreenCapture:(NSArray *)params; /* 手动截屏 参数1:0-文件路径,1-base64编码 */ -(void)handMovementScreenCapture:(NSArray *)params; /* webview长图截屏 参数1:0-文件路径,1-base64编码 */ -(void)webviewScreenCapture:(NSArray *)params; @end