TUIKitConfig.h 771 B

1234567891011121314151617181920212223242526
  1. //
  2. // TUIKitConfig.h
  3. // TUIKit
  4. //
  5. // Created by kennethmiao on 2018/11/5.
  6. // Copyright © 2018年 kennethmiao. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface TUIKitConfig : NSObject
  11. @property (nonatomic, strong) NSMutableArray *faceGroups;
  12. @property (nonatomic, strong) NSMutableArray *moreMenus; //单聊 ==> 更多
  13. @property(nonatomic,strong)NSMutableArray *groutMoreMenus; //群聊 ==> 更多
  14. @property (nonatomic, assign) NSInteger msgCountPerRequest;
  15. + (id)defaultConfig;
  16. //提前加载资源(全路径)
  17. - (void)addResourceToCache:(NSString *)path;
  18. - (UIImage *)getResourceFromCache:(NSString *)path;
  19. - (void)addFaceToCache:(NSString *)path;
  20. - (UIImage *)getFaceFromCache:(NSString *)path;
  21. @end