gpt4 book ai didi

iphone - 加载和卸载消息

转载 作者:行者123 更新时间:2023-11-28 22:44:41 25 4
gpt4 key购买 nike

我在进程启动时创建一条消息 (BOOL YES),我试图让它在进程结束时消失 (BOOL NO),调试显示我在开始和结束时单步执行整个函数,但是消息还在那里。

我哪里错了?提前谢谢你

-(void) loadStillLoadingMessage:(BOOL)yesNo{
CGRect screenBound = [[UIScreen mainScreen] bounds];
CGSize screenSize = screenBound.size;
CGFloat screenWidth = screenSize.width;
CGFloat screenHeight = screenSize.height;
UILabel *loading = [[[UILabel alloc]initWithFrame:CGRectMake((screenWidth/2)-75,(screenHeight)-140,300,40)]autorelease];

loading.text = @"still loading";
loading.backgroundColor = [UIColor clearColor];
loading.textColor = [UIColor blueColor];
loadingLabel = loading;
[self.view addSubview:loadingLabel];
[loadingLabel setHidden:YES];
if (yesNo == YES) {
[loadingLabel setHidden:NO];
}else if (yesNo ==NO){
[loadingLabel setHidden:YES];
}

最佳答案

无论何时调用此方法都会创建一个 UIView。所以你第一次创建和显示的UIView和你第二次创建、显示然后隐藏的UIView是不同的。您需要查看实例变量(在头文件中声明一个变量)。

关于iphone - 加载和卸载消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13557693/

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