| 12345678910111213141516171819202122232425 |
- //
- // chatpopView.h
- // AIIM
- //
- // Created by gan on 2025/4/9.
- //
- #ifndef chatpopView_h
- #define chatpopView_h
- #endif /* chatpopView_h */
- #import <UIKit/UIKit.h>
- @protocol chatpopViewDelegate <NSObject>
- @optional
- - (void)actionNote:(NSString *_Nullable)note;
- @end
- @interface chatpopView : UIView
- @property (nonatomic,weak) id <chatpopViewDelegate> delegate;
- @end
|