From ff89d07ddb485a95260ae582a00d6bc20c8a074b Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Thu, 16 Feb 2017 22:34:20 -0500 Subject: [PATCH] Fix presentation animation of "no contacts" mode of new conversation view. // FREEBIE --- .../src/view controllers/MessageComposeTableViewController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/view controllers/MessageComposeTableViewController.m b/Signal/src/view controllers/MessageComposeTableViewController.m index 4cf22557c..3d47f9707 100644 --- a/Signal/src/view controllers/MessageComposeTableViewController.m +++ b/Signal/src/view controllers/MessageComposeTableViewController.m @@ -135,8 +135,8 @@ NSString *const MessageComposeTableViewControllerCellContact = @"ContactTableVie self.title = NSLocalizedString(@"MESSAGE_COMPOSEVIEW_TITLE", @""); } -- (void)viewDidAppear:(BOOL)animated { - [super viewDidAppear:animated]; +- (void)viewWillAppear:(BOOL)animated { + [super viewWillAppear:animated]; if ([self.contacts count] == 0) { [self showEmptyBackgroundView:YES];