ZGCommonUtils.h 477 B

1234567891011121314151617181920212223
  1. //
  2. // ZGCommonUtils.h
  3. // GJTools
  4. //
  5. // Created by zhuge on 15/11/6.
  6. // Copyright (c) 2015年 zhuge. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ZGCommonUtils : NSObject
  10. +(void) openURL:(NSString*) url;
  11. +(void) openFinder:(NSString *)folderPath;
  12. +(void) showInFinder:(NSString *)filePath;
  13. +(void) copyStringToSystemBoard:(NSString*) string;
  14. +(NSString *) stringFromSystemBoard;
  15. +(NSString *)macUserPath;
  16. +(NSString *)macUserDocumentPath;
  17. @end