-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComposeViewController.h
More file actions
24 lines (20 loc) · 873 Bytes
/
ComposeViewController.h
File metadata and controls
24 lines (20 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// ComposeViewController.h
// Clone
//
// Created by Deja Jackson on 6/12/15.
// Copyright © 2015 Pixel by Pixel Games. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AssetsLibrary/AssetsLibrary.h>
#import <Parse/Parse.h>
#import "OtherComposeTextView.h"
#import "TGCameraViewController.h"
@interface ComposeViewController : UIViewController <UITextViewDelegate, TGCameraDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate>
@property (strong, nonatomic) NSArray *assets;
@property (strong, nonatomic) IBOutlet OtherComposeTextView *composeTextView;
@property (strong, nonatomic) IBOutlet UIImageView *postImageView;
@property (strong, nonatomic) IBOutlet UIImageView *profilepicImageView;
@property (strong, nonatomic) IBOutlet UILabel *usernameLabel;
@property (strong, nonatomic) IBOutlet UIScrollView *composeScrollView;
@end