ZGImacroUtils.h 571 B

12345678910111213141516171819202122
  1. //
  2. // ZGImacroUtils.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/26.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ZGImacroUtils : NSObject
  10. +(void)makeIIMReadable:(NSString*)fileName;
  11. +(void)runIIMFile:(NSString *)filePath;
  12. +(void)createWithTemplateName:(NSString *)templateFileName outputFileName:(NSString *)outputFileName replaceDictionary:(NSDictionary *)replaceDic;
  13. +(NSString *) stringForIIMContent:(NSString *)str;
  14. +(NSString *) stringForIIMPath:(NSString*)str;
  15. +(NSString *) iimPathOfMacOS;
  16. @end