gpt4 book ai didi

ios - 将 UIActivityIndi​​catorView 添加到 UIAlertView

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

我想在消息中添加一个事件指示器,即 uiAlert 消息,我基本上尝试了互联网上的所有内容,但没有任何效果,我只需要 uialertview,这是我的代码

UIAlertView  *waitAlert = [[UIAlertView alloc] initWithTitle:@"Please Wait...." message:@"\n\n" delegate:self cancelButtonTitle:nil otherButtonTitles: nil];
UIActivityIndicatorView *progress= [[UIActivityIndicatorView alloc] initWithFrame: CGRectMake(125, 50, 30, 30)];
progress.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
progress.color = [UIColor blackColor];
[waitAlert addSubview: progress];
[progress startAnimating];
[waitAlert show];

这就是我最终得到的
enter image description here

我错过了什么!?

最佳答案

在 iOS 7 中你不能在 UIAlertView 上添加 subview ,直到 iOS 6.1 才有可能。所以 MBProgressHud 是最好和简单的解决方案

关于ios - 将 UIActivityIndi​​catorView 添加到 UIAlertView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23079967/

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