gpt4 book ai didi

ios - 水平或垂直滚动​​但不能同时滚动

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:09:58 25 4
gpt4 key购买 nike

有没有一种方法可以创建具有垂直或水平滚动但不能同时具有两者的自定义 View ?在纵向模式下,应启用垂直滚动并禁用水平滚动在横向模式下,启用水平滚动并禁用垂直滚动。

最佳答案

您可以根据要转向的方向设置 UIScrollView 的 contentSize 属性。

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {

if(UIInterfaceOrientationIsPortrait(toInterfaceOrientation) {
[self.scrollView setContentSize:CGSizeMake(self.scrollView.bounds.size.width, scrollViewContentHeight)];
} else {
[self.scrollView setContentSize:CGSizeMake(scrollViewContentWidth, self.scrollView.bounds.size.height)];
}
}

关于ios - 水平或垂直滚动​​但不能同时滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16771689/

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