gpt4 book ai didi

ios - 使用动画更改 UIScrollView contentSize

转载 作者:行者123 更新时间:2023-12-02 22:44:17 26 4
gpt4 key购买 nike

是否可以使用动画更改 UIScrollViewcontentSize ,以便大小在特定时间段内减小/增大,例如

UIView.animateWithDuration(0.3, animations: {
scrollView.contentSize.width -= 100.0
}

不起作用。不知道有没有办法实现?

最佳答案

尝试 transitionWithView 方法:

      float newHeight = scroller.contentSize.height - someChangeFloat;
[UIView transitionWithView:scroller
duration:0.3f
options:UIViewAnimationOptionCurveEaseOut
animations:^{
scroller.contentSize = CGSizeMake(0, newHeight);
}
completion:^(BOOL finished){
}];

关于ios - 使用动画更改 UIScrollView contentSize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37758661/

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