簡體   English   中英

如何在UITabBarController上顯示活動指示器

[英]How can I show an activity indicator on a UITabBarController

我有一個帶有多個nav vcs的UITabBarController。 如何從標簽欄控制器的viewDidLoad顯示當前可見vc上的活動指示器?

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM