// // KBStreamOverlayView.h // 自带关闭按钮的流式展示层,内部持有 KBStreamTextView。 // #import NS_ASSUME_NONNULL_BEGIN @class KBStreamTextView, KBStreamOverlayView; @protocol KBStreamOverlayViewDelegate @optional - (void)streamOverlayDidTapClose:(KBStreamOverlayView *)overlay; @end @interface KBStreamOverlayView : UIView @property (nonatomic, strong, readonly) KBStreamTextView *textView; @property (nonatomic, weak, nullable) id delegate; - (void)appendChunk:(NSString *)text; - (void)finish; @end NS_ASSUME_NONNULL_END