gpt4 book ai didi

ios - 尝试向 tabBar 添加指示器...但它显示在错误的位置

转载 作者:行者123 更新时间:2023-11-29 03:43:49 30 4
gpt4 key购买 nike

我试图向我的 tabBar 添加一个微调器(这是 2 个选项卡 TabBarController 中的第二个 tabBar)...从第二个选项卡栏的 ViewController 调用以下函数。 .

-(UIActivityIndicatorView *)spinner {

// If we don't have a spinner, then set one up

if (!_spinner) {

// Setup the spinner

_spinner =[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleWhite];

// Add the spinner to the tab bar

[self.tabBarController.tabBar addSubview:_spinner];

}

return _spinner;

}

问题是:事件指示器(通过 addSubview)不是显示在相应的 tabBar 上,而是显示在我的 TabBarController 的 (0,0) 位置!

有人可以推荐一些修复方法吗!

非常感谢!

最佳答案

试试这个代码:

 _spinner =[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:
UIActivityIndicatorViewStyleWhite];
_spinner.center=self.tabBarController.tabBar.center;
[_spinner startAnimating];
[self.tabBarController.tabBar addSubview:_spinner];

关于ios - 尝试向 tabBar 添加指示器...但它显示在错误的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17994363/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com