From 8bcc19e36c44d1daf56443691ee7d34951a59f81 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Tue, 19 Mar 2019 10:01:50 -0400 Subject: [PATCH] Add missing accessibility ids in block list view. --- .../ViewControllers/SelectRecipientViewController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SignalMessaging/ViewControllers/SelectRecipientViewController.m b/SignalMessaging/ViewControllers/SelectRecipientViewController.m index ac420bc4b..784408f43 100644 --- a/SignalMessaging/ViewControllers/SelectRecipientViewController.m +++ b/SignalMessaging/ViewControllers/SelectRecipientViewController.m @@ -65,6 +65,9 @@ NSString *const kSelectRecipientViewControllerCellIdentifier = @"kSelectRecipien self.tableViewController.tableView.scrollEnabled = NO; } + // These subviews are lazy-created; ensure they exist now. + [self phoneNumberButton]; + [self phoneNumberTextField]; SET_SUBVIEW_ACCESSIBILITY_IDENTIFIER(self, _countryCodeButton); SET_SUBVIEW_ACCESSIBILITY_IDENTIFIER(self, _phoneNumberTextField); SET_SUBVIEW_ACCESSIBILITY_IDENTIFIER(self, _phoneNumberButton);