gpt4 book ai didi

objective-c - 上一页 下一页 导航

转载 作者:行者123 更新时间:2023-11-29 04:34:25 25 4
gpt4 key购买 nike

我想通过左右滑动导航到图库中的上一张和下一张图像,但我不想要上一个下一个按钮。在搜索时,我遇到了滑动手势,这是我必须使用的还是简单的 ScrollView ?任何人都可以提供如何做到这一点的想法。有什么想法吗?

最佳答案

一个 contentSize 水平扩展的 UIScrollView 就足够了。

例如,假设您有 4 个 UIImageView 对象,它们位于 imageViewArray

for (int i = 0; i < 4; i++)
{
UIImageView *imgView = [imageViewArray objectAtIndex:i];
//one thing to note is while adding the image views, don't forget to change each views frame.origin.x property accordingly (in this case, each one will increase by the width of the view
//e.g.
imgView.frame = CGRectMake (self.view.frame.size.width * i, 0, self.view.frame.size.width, self.view.frame.size.height);

[yourScrollView addSubview:imgView];
}


[yourScrollView setContentSize:CGSizeMake(self.view.frame.size.width * 4, self.view.frame.size.height)]; // 4 is the number that will expand the scrollview horizontally

关于objective-c - 上一页 下一页 导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11260047/

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