| 1234567891011121314151617181920212223242526 |
- //
- // TUIKitConfig.h
- // TUIKit
- //
- // Created by kennethmiao on 2018/11/5.
- // Copyright © 2018年 kennethmiao. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface TUIKitConfig : NSObject
- @property (nonatomic, strong) NSMutableArray *faceGroups;
- @property (nonatomic, strong) NSMutableArray *moreMenus; //单聊 ==> 更多
- @property(nonatomic,strong)NSMutableArray *groutMoreMenus; //群聊 ==> 更多
- @property (nonatomic, assign) NSInteger msgCountPerRequest;
- + (id)defaultConfig;
- //提前加载资源(全路径)
- - (void)addResourceToCache:(NSString *)path;
- - (UIImage *)getResourceFromCache:(NSString *)path;
- - (void)addFaceToCache:(NSString *)path;
- - (UIImage *)getFaceFromCache:(NSString *)path;
- @end
|