chatpopView.h 372 B

12345678910111213141516171819202122232425
  1. //
  2. // chatpopView.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/4/9.
  6. //
  7. #ifndef chatpopView_h
  8. #define chatpopView_h
  9. #endif /* chatpopView_h */
  10. #import <UIKit/UIKit.h>
  11. @protocol chatpopViewDelegate <NSObject>
  12. @optional
  13. - (void)actionNote:(NSString *_Nullable)note;
  14. @end
  15. @interface chatpopView : UIView
  16. @property (nonatomic,weak) id <chatpopViewDelegate> delegate;
  17. @end