// // Copyright (c) 2017 Open Whisper Systems. All rights reserved. // //#import NS_ASSUME_NONNULL_BEGIN @class SignalAttachment; @protocol ConversationInputTextViewDelegate - (void)didPasteAttachment:(SignalAttachment *_Nullable)attachment; - (void)textViewDidChangeLayout; - (void)inputTextViewDidBecomeFirstResponder; @end #pragma mark - @interface ConversationInputTextView : UITextView @property (weak, nonatomic) id inputTextViewDelegate; - (NSString *)trimmedText; @end NS_ASSUME_NONNULL_END