blob: 3f2b59ccd7fba5174956129ff1a06ee507f59515 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// ThreadViewController.h
// Juick
//
// Created by Vitaly Takmazov on 24/09/2017.
// Copyright © 2017 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
@import PHFComposeBarView;
@interface ThreadViewController : UITableViewController<PHFComposeBarViewDelegate>
@property(nonatomic, strong) NSString *path;
@property(nonatomic, strong) NSMutableDictionary *params;
@end
|