-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathViewController.h
More file actions
22 lines (20 loc) · 1.01 KB
/
Copy pathViewController.h
File metadata and controls
22 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
@interface ViewController : UIViewController
//@property (nonatomic, strong) UIView *inputContainer;
@property (nonatomic, strong) UITextView *messageTextView;
@property (nonatomic, strong) UITableView *chatTableView;
@property (nonatomic, strong) UILabel *threadTitleLabel;
@property (nonatomic, strong) NSLayoutConstraint *inputHeightConstraint;
//@property (nonatomic, strong) UIButton *sendButton;
@end
// Forward declare private methods defined in ViewController.m
@interface ViewController (EZPrivateMethods)
- (void)appendToChat:(NSString *)text;
- (NSString *)processReplyWithCodeBlocks:(NSString *)reply
savedPaths:(NSMutableArray<NSString *> *)savedPaths;
- (NSString *)processReplyWithCodeBlocks:(NSString *)reply
savedPaths:(NSMutableArray<NSString *> *)savedPaths
isRestore:(BOOL)isRestore;
@end