gpt4 book ai didi

iphone - 如何在 UILabel 中按顺序显示字符串中的字符?

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

在 UILabel 中,您可以显示一个字符串以便逐个字符地填充吗?例如,如果标签文本是“IPHONE”,我想显示“I”,然后是“IP”,然后是“IPH”,一直到“IPHONE”。

我怎么能以这种方式让标签显示文本?

最佳答案

所以你想显示一个字符串的第一个字母,然后在一段时间后显示它的第二个字母,等等。解决方案:使用一个定期调用方法的计时器;该方法将适本地设置文本:

NSString *theTextToDisplay = @"Hello world!";

[NSTimer scheduledTimerWithTimeInterval:0.33
target:self
selector:@selector(timerShoot:)
userInfo:nil
repeats:YES];

- (void)timerShoot:(NSTimer *)tmr
{
static int pos = 1;
theUILabel.text = [theTextToDisplay substringToIndex:pos];
if (++pos > theTextToDisplay.length) {
[tmr invalidate];
}
}

关于iphone - 如何在 UILabel 中按顺序显示字符串中的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14138459/

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