blob: 05e3c73fcd7b51227bb908424dc5fe4f3858f852 (
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
@property (weak, nonatomic) IBOutlet UITextView *textView;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConstraint;
@property (strong, nonatomic) NSString *draft;
@property (strong, nonatomic) Message *replyTo;
@end
|