summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/NewPostViewController.h
blob: 637aa0808e8200475e3304c775a49e389238c574 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  NewPostViewController.h
//  Juick
//
//  Created by Vitaly Takmazov on 07.11.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "Message.h"

extern NSString * const NewMessageNotificationName;
extern NSString * const ReplyPostedNotificationName;

@interface NewPostViewController : UIViewController<UITextViewDelegate>
@property (weak, nonatomic) IBOutlet UITextView *textView;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConstraint;

@property (strong, nonatomic) NSString *draft;

@property (strong, nonatomic) Message *replyTo;
- (IBAction)cancelPost:(id)sender;

@end