gpt4 book ai didi

xcode - iPhone的UIBUtton标题动画

转载 作者:行者123 更新时间:2023-12-04 18:15:58 25 4
gpt4 key购买 nike

我想为自定义 UIButton 的标题添加动画,以便数字(每个标题显示一个随机分配的数字)将旋转。我怎样才能做到这一点?

问题是我不想使用翻转数字图像来做到这一点。我想知道是否还有其他方法。

最佳答案

假设您有一个名为 flipLabelButton 的按钮连接为 IBOutlet对于您的 View Controller ,您可以使用此代码将按钮设置为新标签的动画:

- (IBAction)flipLabelText:(id)sender {
NSString *newText = [NSString stringWithFormat:@"%d", rand() % 100];
[UIView beginAnimations:@"flipbutton" context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.flipLabelButton cache:YES];
[self.flipLabelButton setTitle:newText forState:UIControlStateNormal];
[UIView commitAnimations];
}

关于xcode - iPhone的UIBUtton标题动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11709147/

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