admin
2022-09-04 fa05f89529e05078b29606e4beda3de5cfdce485
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
//
//  NSObject+CSJAd.h
//  CSJAdSDK
//
//  Created by Rush.D.Xzj on 2021/5/11.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface NSObject (CSJAd)
 
 
+ (void)csj_async_main_gaosiViewWithURLString:(NSString *)urlString size:(CGSize)size completion:(void(^)(UIImage *image, UIView *gaosiView))completion;
 
 
- (NSString *)csj_stringWithPropertyArray:(NSArray <NSString *>*)propertyArray;
 
 
 
- (BOOL)csj_instanceof_Object;
- (BOOL)csj_instanceof_Array;
- (BOOL)csj_instanceof_Dictionary;
- (BOOL)csj_instanceof_JSONObject;
- (NSArray *)csj_as_Array;
- (NSDictionary *)csj_as_Dictionary;
- (NSDictionary *)csj_as_JSONObject;
 
// object == nil; array.count == 0; dic.allKeys.count == 0; string.length == 0;
+ (BOOL)csj_isEmpty_object:(id)object;
 
 
@end
 
NS_ASSUME_NONNULL_END