summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/NewPostViewController.h
blob: 9d1297c348fddab889fc1c558641f763951c3569 (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
//
//  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;

@end