mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
11 years ago
|
//
|
||
|
// NewGroupViewController.h
|
||
|
// Signal
|
||
|
//
|
||
|
// Created by Dylan Bourgeois on 13/11/14.
|
||
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
10 years ago
|
#import "TSGroupModel.h"
|
||
9 years ago
|
#import "TSGroupThread.h"
|
||
11 years ago
|
|
||
9 years ago
|
@interface NewGroupViewController : UIViewController <UITableViewDelegate,
|
||
|
UITabBarDelegate,
|
||
|
UIImagePickerControllerDelegate,
|
||
|
UINavigationControllerDelegate,
|
||
|
UITextFieldDelegate>
|
||
11 years ago
|
|
||
9 years ago
|
- (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;
|
||
11 years ago
|
|
||
|
@end
|