// // NewPostViewController.h // Juick // // Created by Vitaly Takmazov on 07.11.13. // Copyright (c) 2013 com.juick. All rights reserved. // #import #import "Message.h" extern NSString * const NewMessageNotificationName; extern NSString * const ReplyPostedNotificationName; @interface NewPostViewController : UIViewController @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