session-ios/Signal/src/view controllers/NewGroupViewController.h
2015-02-20 19:31:44 +01:00

25 lines
902 B
Objective-C

//
// NewGroupViewController.h
// Signal
//
// Created by Dylan Bourgeois on 13/11/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TSGroupThread.h"
#import "TSGroupModel.h"
@interface NewGroupViewController : UIViewController <UITableViewDelegate, UITabBarDelegate, UIImagePickerControllerDelegate, UINavigationControllerDelegate, UITextFieldDelegate>
- (void)configWithThread:(TSGroupThread*)thread;
@property(nonatomic, strong) IBOutlet UITableView* tableView;
@property(nonatomic, strong) IBOutlet UITextField* nameGroupTextField;
@property(nonatomic, strong) IBOutlet UIButton* groupImageButton;
@property(nonatomic, strong) IBOutlet UIView* tapToDismissView;
@property(nonatomic, strong) IBOutlet UILabel *addPeopleLabel;
@property(nonatomic, strong) UIImage* groupImage;
@property(nonatomic, strong) TSGroupModel* groupModel;
@end