mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
15 lines
371 B
Objective-C
15 lines
371 B
Objective-C
#import "TGCollectionItemView.h"
|
|
|
|
@interface TGWatchReplyCollectionItemView : TGCollectionItemView
|
|
|
|
@property (nonatomic, copy) void (^valueChanged)(NSString *);
|
|
@property (nonatomic, copy) void (^inputReturned)(void);
|
|
|
|
- (void)setValue:(NSString *)value;
|
|
- (void)setPlaceholder:(NSString *)placeholder;
|
|
|
|
- (void)becomeFirstResponder;
|
|
- (void)resignFirstResponder;
|
|
|
|
@end
|