From 1411148c79823d5a4c796520a7d197b0daa6b256 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 13 Feb 2019 16:24:16 -0500 Subject: [PATCH] Sketch out the 'onboarding phone number' view. --- .../src/ViewControllers/HomeView/HomeViewController.m | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Signal/src/ViewControllers/HomeView/HomeViewController.m b/Signal/src/ViewControllers/HomeView/HomeViewController.m index ff5d49af5..2e8ab8ba1 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewController.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewController.m @@ -482,17 +482,6 @@ NSString *const kArchivedConversationsReuseIdentifier = @"kArchivedConversations [self.searchResultsController viewDidAppear:animated]; self.hasEverAppeared = YES; - - dispatch_async(dispatch_get_main_queue(), ^{ - id onboardingController = [OnboardingControllerImpl new]; - OnboardingPhoneNumberViewController *view = - [[OnboardingPhoneNumberViewController alloc] initWithOnboardingController:onboardingController]; - // OnboardingPermissionsViewController *view = - // [[OnboardingPermissionsViewController alloc] initWithOnboardingController:onboardingController]; - OWSNavigationController *navigationController = - [[OWSNavigationController alloc] initWithRootViewController:view]; - [self presentViewController:navigationController animated:YES completion:nil]; - }); } - (void)viewDidDisappear:(BOOL)animated