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.
25 lines
902 B
Objective-C
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
|