gpt4 book ai didi

ios - 不同项目的不同宽度 - 在 iCarousel 中

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:59:15 26 4
gpt4 key购买 nike

我正在使用 iCarousel - https://github.com/nicklockwood/iCarousel .

虽然我需要改变不同项目的宽度,意思是为不同的项目制作不同的宽度。

不确定如何进行更改,如果您对此有任何经验,请提供帮助。

另一个问题是如何让它在滚动时只滚动1个项目。 -- 表示只滚动到下一个项目,目前它将继续滚动到下一个项目的下一个...

非常感谢任何帮助。

最佳答案

滚动时只滚动 1 个项目,你必须添加 gestureRecognizer 并禁用 Carousel 的滚动

_myCarousel = [[iCarousel alloc] initWithFrame:CGRectMake(0,0, 310, 100)];
_myCarousel.type = iCarouselTypeCoverFlow2;
_myCarousel.scrollEnabled = NO;

UISwipeGestureRecognizer * swipeleft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeleft:)];
swipeleft.direction = UISwipeGestureRecognizerDirectionLeft;
[_myCarousel addGestureRecognizer:swipeleft];

UISwipeGestureRecognizer * swiperight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swiperight:)];
swiperight.direction=UISwipeGestureRecognizerDirectionRight;
[_myCarousel addGestureRecognizer:swiperight];

_myCarousel.dataSource = self;
_myCarousel.delegate = self;
[myView addSubview:_myCarousel];

向左滑动: & 向右滑动:

-(void)swipeleft:(UISwipeGestureRecognizer*)gestureRecognizer
{
[_myCarousel scrollByNumberOfItems:1 duration:0.25];
}
-(void)swiperight:(UISwipeGestureRecognizer*)gestureRecognizer
{
[_myCarousel scrollByNumberOfItems:-1 duration:0.25];
}

按预期为我工作。希望这会帮助你..

关于ios - 不同项目的不同宽度 - 在 iCarousel 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31205529/

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