-
Notifications
You must be signed in to change notification settings - Fork 0
/
PostViewController.h
27 lines (22 loc) · 975 Bytes
/
PostViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// PostViewController.h
// ZomeChat
//
// Created by Brian Lin on 11/24/14.
// Copyright (c) 2014 Zome. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "JSQMessagesKeyboardController.h"
@interface PostViewController : UIViewController <UITextFieldDelegate, UITableViewDelegate, UITableViewDataSource>
@property (strong, nonatomic) NSDictionary *postData;
@property (weak, nonatomic) IBOutlet UIButton *replyBtn;
@property (weak, nonatomic) IBOutlet UIView *replyContainer;
@property (weak, nonatomic) IBOutlet UITextField *replyTextField;
@property (strong, nonatomic) JSQMessagesKeyboardController *keyboardController;
@property (weak, nonatomic) IBOutlet UITableView *commentTable;
@property (strong, nonatomic) NSMutableArray *comments;
@property (strong, nonatomic) NSMutableArray *likes;
@property (strong, nonatomic) NSString *postId;
@property (strong, nonatomic) NSString *reportCommentId;
- (void) receiveFeedDetail:(NSDictionary *)packet;
@end