diff options
author | Vitaly Takmazov | 2018-04-02 00:31:43 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-04-02 00:31:43 +0300 |
commit | f153a400634d4aa726dafd2257921b904c92824b (patch) | |
tree | 51ed90b89ccd0eebc4abc85a2e888b65009d34a1 /Juick/ViewControllers/DialogsViewController.m | |
parent | c623f12b2d5e95708a3971e642410c9098f71285 (diff) |
multiple fixes
Diffstat (limited to 'Juick/ViewControllers/DialogsViewController.m')
-rw-r--r-- | Juick/ViewControllers/DialogsViewController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Juick/ViewControllers/DialogsViewController.m b/Juick/ViewControllers/DialogsViewController.m index 4f89814..d40dd95 100644 --- a/Juick/ViewControllers/DialogsViewController.m +++ b/Juick/ViewControllers/DialogsViewController.m @@ -20,7 +20,8 @@ - (void)viewDidLoad { [super viewDidLoad]; - [self.navigationController.visibleViewController setTitle:@"Chats"]; + [self.tabBarItem setTitle:@"Chats"]; + self.navigationController.visibleViewController.navigationItem.title = @"Chats"; [self.view setBackgroundColor:[ColorScheme mainBackground]]; [self.tableView registerNib:[UINib nibWithNibName:@"ConversationCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"notificationCell"]; self.chats = [NSMutableArray array]; |