怎么判断IOS安装包中是否包含jspatch代码

来源:互联网 发布:经典文案 知乎 编辑:程序博客网 时间:2024/05/21 19:27
  1.修改test.ipa 的后缀为 test.zip.

  2.解压test.zip.

  3. 右键显示包内容.

  4. 把"test"拖到UltraEdit.

 5.  点击"16进制编辑"

6. 搜索 以下方法,如果能搜索的到就说明你的包包含jspatch,通不过苹果审核.

+ (void)startEngine;

+ (JSValue *)evaluateScriptWithPath:(NSString *)filePath;

+ (void)defineStruct:(NSDictionary *)defineDict;

+ (void)handleException:(void (^)(NSString *msg))exceptionBlock;

+ (void)main:(JSContext *)context;

+ (void *)formatPointerJSToOC:(JSValue *)val;

+ (id)formatRetainedCFTypeOCToJS:(CFTypeRef)CF_CONSUMED type;

+ (id)formatPointerOCToJS:(void *)pointer;

+ (id)formatJSToOC:(JSValue *)val;

+ (id)formatOCToJS:(id)obj;

+ (int)sizeOfStructTypes:(NSString *)structTypes;

+ (void)getStructDataWidthDict:(void *)structData dict:(NSDictionary *)dict structDefine:(NSDictionary *)structDefine;

+ (NSDictionary *)getDictOfStruct:(void *)structData structDefine:(NSDictionary *)structDefine;

+ (NSMutableDictionary *)registeredStruct;

+ (NSDictionary *)overideMethods;



0 0
原创粉丝点击