gpt4 book ai didi

ios - ios 7中未声明的选择器警告

转载 作者:行者123 更新时间:2023-12-01 17:40:27 26 4
gpt4 key购买 nike

我正在使用 NSTimer 创建欢迎标签但它通过一些警告显示



undeclared selector hidelable and unused variable timer



我没用过 NSTimer在有人能告诉我我哪里做错之前,wt是正确的方法。我需要在应用程序加载后发出一条欢迎消息,它必须消失

我试过这个我无法得到请帮助我

这是我必须在 View didload 中使用的代码
NSTimer  * timer = [NSTimer scheduledTimerWithTimeInterval:60 target:self selector:@selector(hideLabel:) userInfo:nil repeats:NO];

在 Storyboard 中,我使用了要显示消息的 ib 标签
@property (strong, nonatomic) IBOutlet UILabel *wel;

请任何人告诉 wt 是制作这个的正确方法..

最佳答案

你还没有声明 hideLabel 方法。因此它给出了警告

[NSTimer scheduledTimerWithTimeInterval:60 target:self selector:@selector(hideLabel:) userInfo:nil repeats:NO];

-(void)hideLabel:(NSTimer *)timer{
myLabel.hidden=YES;
}

关于ios - ios 7中未声明的选择器警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21494399/

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