// // ZGCommonUtils.h // GJTools // // Created by zhuge on 15/11/6. // Copyright (c) 2015年 zhuge. All rights reserved. // #import @interface ZGCommonUtils : NSObject +(void) openURL:(NSString*) url; +(void) openFinder:(NSString *)folderPath; +(void) showInFinder:(NSString *)filePath; +(void) copyStringToSystemBoard:(NSString*) string; +(NSString *) stringFromSystemBoard; +(NSString *)macUserPath; +(NSString *)macUserDocumentPath; @end