diff --git a/Classes/ChatConversationInfoView.h b/Classes/ChatConversationInfoView.h
index 874630dc3..cf7951acd 100644
--- a/Classes/ChatConversationInfoView.h
+++ b/Classes/ChatConversationInfoView.h
@@ -28,6 +28,7 @@
@property (weak, nonatomic) IBOutlet UITextField *nameLabel;
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (weak, nonatomic) IBOutlet UIView *waitView;
+@property (weak, nonatomic) IBOutlet UIView *participantsBar;
+ (void)displayCreationError;
diff --git a/Classes/ChatConversationInfoView.m b/Classes/ChatConversationInfoView.m
index 9d3ff8248..5a3094a40 100644
--- a/Classes/ChatConversationInfoView.m
+++ b/Classes/ChatConversationInfoView.m
@@ -53,11 +53,16 @@ static UICompositeViewDescription *compositeDescription = nil;
- (void)viewDidLoad {
[super viewDidLoad];
- UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]
- initWithTarget:self
- action:@selector(dismissKeyboards)];
+ UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self
+ action:@selector(dismissKeyboards)];
tap.delegate = self;
[self.view addGestureRecognizer:tap];
+
+ UITapGestureRecognizer *particpantsBarTap = [[UITapGestureRecognizer alloc] initWithTarget:self
+ action:@selector(onAddClick:)];
+ particpantsBarTap.delegate = self;
+ [_participantsBar addGestureRecognizer:particpantsBarTap];
+
_nameLabel.delegate = self;
_tableView.dataSource = self;
_tableView.delegate = self;
diff --git a/Classes/ChatConversationInfoView.xib b/Classes/ChatConversationInfoView.xib
index e7ef9d66d..15ec50f80 100644
--- a/Classes/ChatConversationInfoView.xib
+++ b/Classes/ChatConversationInfoView.xib
@@ -14,6 +14,7 @@
+