You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
477 B
24 lines
477 B
// |
|
// ABSUtil.h |
|
// AntilockBrakeSystem |
|
// |
|
// Created by 地风(ElonChan) on 16/5/16. |
|
// Copyright © 2016年 Ali. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@interface ABSUtil : NSObject |
|
|
|
// 设置日志逻辑 |
|
+ (void)setLogger:(void (^)(NSString *))logger; |
|
|
|
+ (void)Logger:(NSString *)log; |
|
|
|
+ (BOOL)isValidString:(id)notValidString; |
|
|
|
+ (BOOL)isWhiteListClass:(Class)class; |
|
|
|
+ (void)deleteCacheWithfilePathsToRemove:(NSArray *)filePathsToRemove; |
|
|
|
@end
|
|
|