gpt4 book ai didi

ios - progressview 在 ios7 中没有显示

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

我通过将进度 View 和标签作为 subview 添加到警报 View 来显示进度 View 和标签,这在 IOS6 上运行良好,我在 IOS7 上测试了同样的东西,但进度 View 和标签没有显示。下面是我的代码。需要做哪些更改才能使其在 ios7 上运行?

 alert = [[UIAlertView alloc] initWithTitle:@"Please Wait..Downloading reports..."    message:nil delegate:self cancelButtonTitle:nil otherButtonTitles: nil] ;
alert.frame=CGRectMake(50, 50, 280, 40);
prgView = [[UIProgressView alloc]initWithProgressViewStyle:UIProgressViewStyleBar];
prgView.frame = CGRectMake(10, 60, 265, 20);
prgView.hidden=NO;
[alert addSubview:prgView];
statusLabel = [[UILabel alloc] init];
statusLabel.backgroundColor = [UIColor clearColor];
statusLabel.textColor = [UIColor whiteColor];
statusLabel.font = [UIFont fontWithName:@"AmericanTypewriter-Condensed" size:18.0];
statusLabel.frame = CGRectMake(120, 80, 80, 20);
[alert addSubview:statusLabel];
[alert show];

最佳答案

尝试使用 showInView 而不是 addSubview

[alert showInView:self.view];

关于ios - progressview 在 ios7 中没有显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19181499/

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