1
私は複数のnav vcsを持つUITabBarControllerを持っています。タブバーコントローラのviewDidLoad
から現在表示されているVC上にアクティビティインジケータを表示するにはどうすればよいですか?UITabBarControllerでアクティビティインジケータを表示するには
私は複数のnav vcsを持つUITabBarControllerを持っています。タブバーコントローラのviewDidLoad
から現在表示されているVC上にアクティビティインジケータを表示するにはどうすればよいですか?UITabBarControllerでアクティビティインジケータを表示するには
のObjective-C
UIViewController *currentVisibleViewController = [self.tabBarController.viewControllers objectAtIndex:self.tabBarController.selectedIndex];
//Add ActivityIndicator on currentVisibleViewController.view
スウィフト-3
let currentVisibleViewController = self.tabBarController?.viewControllers?[(self.tabBarController?.selectedIndex)!]
//Add ActivityIndicator on currentVisibleViewController.view