session-ios/Signal/src/ViewControllers/NewGroupViewController.h

29 lines
1.1 KiB
C
Raw Normal View History

2014-10-29 21:58:58 +01:00
//
// 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 "TSGroupModel.h"
#import "TSGroupThread.h"
2014-10-29 21:58:58 +01:00
@interface NewGroupViewController : UIViewController <UITableViewDelegate,
UITabBarDelegate,
UIImagePickerControllerDelegate,
UINavigationControllerDelegate,
UITextFieldDelegate>
2014-10-29 21:58:58 +01:00
- (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;
2014-10-29 21:58:58 +01:00
@end