ZGScriptUtils.h 350 B

12345678910111213141516
  1. //
  2. // ZGScriptUtils.h
  3. // ZGKeywordOperation
  4. //
  5. // Created by zhuge on 19/6/14.
  6. // Copyright (c) 2014年 com.woodenperon. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ZGScriptUtils : NSObject
  10. +(void) excuteScriptString:(NSString*)script;
  11. +(void) excuteScriptFile:(NSString*)scriptFileName withArgs:(NSArray*)args;
  12. @end