From a04f0db29cb280eb45888d3a56967cf9adc6214d Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 4 Mar 2018 11:50:14 +0300 Subject: ChatViewController --- Juick/ViewControllers/DialogsViewController.m | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Juick/ViewControllers/DialogsViewController.m') diff --git a/Juick/ViewControllers/DialogsViewController.m b/Juick/ViewControllers/DialogsViewController.m index 8eea017..878e912 100644 --- a/Juick/ViewControllers/DialogsViewController.m +++ b/Juick/ViewControllers/DialogsViewController.m @@ -7,6 +7,7 @@ // #import "DialogsViewController.h" +#import "ChatViewController.h" #import "ColorScheme.h" #import "ConversationCell.h" #import "APIClient.h" @@ -53,5 +54,17 @@ return cell; } +-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { + [self performSegueWithIdentifier:@"chatSegue" sender:self]; +} + +-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { + if ([segue.identifier isEqualToString:@"chatSegue"]) { + Chat *chat = [self.chats objectAtIndex:[self.tableView indexPathForSelectedRow].row]; + ChatViewController *vc = (ChatViewController *)segue.destinationViewController; + [vc setUname:chat.uname]; + } +} + @end -- cgit v1.2.3