我UIToolbar
在 iOS 中使用 a 并试图通过从右侧滑入来获得一个“到达”的新按钮。有没有办法直接访问栏上按钮的“位置”?我目前有一个接近预期效果的混乱解决方法,但我希望有一种方法可以使用 Core Animation 移动它们,这样我就可以实现“EaseInEaseOut”类型的计时功能。有任何想法吗?
- (void) testPart1 {
[NSTimer scheduledTimerWithTimeInterval:(0) target:self selector:@selector(testPart2:) userInfo:[NSNumber numberWithInt:500] repeats:NO];
}
- (void) testPart2:(NSTimer*)sender {
int countdown = [sender.userInfo integerValue];
theSpace.width = 10+(int)countdown;
itemTestButton.width = 49;
itemTestButton.width = 50;
countdown -= 5;
if(countdown>0)
[NSTimer scheduledTimerWithTimeInterval:(0.004) target:self selector:@selector(testPart2:) userInfo:[NSNumber numberWithInt:countdown] repeats:NO];
}
这里的前提是使用 anNSTimer
来更改 Fixed Space Bar Button item 的宽度,并倒计时到零。我发现我必须更改实际按钮的宽度才能使其工作,否则不会出现“动画”。我知道这很混乱,有人必须有更清洁的方法。