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.
25 lines
0 B
25 lines
0 B
1 year ago
|
//
|
||
|
// 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
|