1234567891011121314151617181920212223 |
- //
- // ZGCommonUtils.h
- // GJTools
- //
- // Created by zhuge on 15/11/6.
- // Copyright (c) 2015年 zhuge. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @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
|