我正在尝试开发类似的东西。如果您熟悉Facebook Paper,它实际上是如何实现这种行为的?具体来说,在其主视图中,底部有UIScrollView
,其中包含大量UIView
个用户帖子,当您向上滑动时,UIScrollView
可以采用全屏模式
我尝试使用以下代码,但似乎效果不佳:
- (void)handleGesture:(UIGestureRecognizer *)gestureRecognizer
{
_scaleValue += 1.0f;
CGAffineTransform transform = CGAffineTransformMakeScale(1, _scaleValue);
[UIView beginAnimations:@"whatever" context:nil];
_scrollView.transform = transform;
[UIView commitAnimations];
}