From e3670a497743ace97249a1fc07baf7e3419ac393 Mon Sep 17 00:00:00 2001 From: Ajai Prabhu G S Date: Tue, 9 Apr 2019 15:34:09 +0530 Subject: [PATCH] adding "Loader" as accessibility id --- MVMCoreUI/BaseControllers/MFLoadingViewController.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MVMCoreUI/BaseControllers/MFLoadingViewController.m b/MVMCoreUI/BaseControllers/MFLoadingViewController.m index c44dd76f..aad2383e 100644 --- a/MVMCoreUI/BaseControllers/MFLoadingViewController.m +++ b/MVMCoreUI/BaseControllers/MFLoadingViewController.m @@ -33,6 +33,8 @@ activityIndicatorView.translatesAutoresizingMaskIntoConstraints = NO; [view addSubview:activityIndicatorView]; self.activityIndicator = activityIndicatorView; + self.activityIndicator.accessibilityIdentifier = @"Loader"; + [NSLayoutConstraint constraintPinView:activityIndicatorView heightConstraint:YES heightConstant:PaddingSix widthConstraint:YES widthConstant:PaddingSix]; // Sets the constraints for the activityIndicatorView