-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseUtil.h
45 lines (27 loc) · 1011 Bytes
/
BaseUtil.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// VisioUtil.h
// visioiOS
//
// Created by wangdean on 13-6-17.
// Copyright (c) 2013年 red_goal. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface BaseUtil : NSObject
+ (NSString *)appPlistFile;
+ (BOOL)isValidEmailAddress:(NSString *)email;
+ (NSString *)getResultImageFileByNowTimeWithOver360:(BOOL)over360;
+ (NSString *)getSanpFileWithResultFile:(NSString *)result_file;
+ (UIImage *)getImageSnap:(UIImage *)image;
+ (void)showTipAlertViewWithMessage:(NSString *)msg;
+ (NSString *)getAppDocumentPath;
+ (NSString *)getAppLibraryPath;
+ (NSArray *)listDirectory:(NSString *)path;
+ (BOOL)saveImage:(UIImage *)image atPath:(NSString *)path;
+ (BOOL)saveResultImage:(UIImage *)image atPath:(NSString *)path withThumb:(BOOL)saveThumb;
+ (UIImage *)scaleImage:(UIImage *)image toScale:(float)scaleSize;
+ (BOOL)isNewIphone;
+ (NSString*)getDeviceVersion;
+ (void)saveImg2Album:(UIImage *)image;
+ (double)radius2Degree:(double)degree;
@end