ChatIndexController.h 331 B

123456789101112131415161718192021
  1. //
  2. // ChatIndexController.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/4/6.
  6. //
  7. #ifndef ChatIndexController_h
  8. #define ChatIndexController_h
  9. #endif /* ChatIndexController_h */
  10. #import <UIKit/UIKit.h>
  11. @interface ChatIndexController : UIViewController
  12. @property(nonatomic, strong) NSMutableArray *chatlist;
  13. -(void)reloadList;
  14. @end