菜鸟教程小白 发表于 2022-12-12 15:42:31

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


                                            <p><p>我正在使用 iCarousel - <a href="https://github.com/nicklockwood/iCarousel" rel="noreferrer noopener nofollow">https://github.com/nicklockwood/iCarousel</a> .</p>

<p>虽然我需要更改不同项目的宽度,但意味着为不同的项目设置不同的宽度。 </p>

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

<p>另一个问题是如何让它在滚动时只滚动 1 个项目。 -- 表示只滚动到下一个项目,当前它会继续滚动到下一个项目...</p>

<p>非常感谢任何帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>对于滚动时仅滚动 1 个项目,您必须添加gestureRecognizer 并禁用 Carousel 的滚动</p>

<pre><code>_myCarousel = [ initWithFrame:CGRectMake(0,0, 310, 100)];
_myCarousel.type = iCarouselTypeCoverFlow2;                        
_myCarousel.scrollEnabled = NO;

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

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

_myCarousel.dataSource = self;
_myCarousel.delegate = self;
;
</code></pre>

<p><strong>swipeleft:</strong> & <strong>swiperight:</strong> 将是 </p>

<pre><code>-(void)swipeleft:(UISwipeGestureRecognizer*)gestureRecognizer
{
    ;
}
-(void)swiperight:(UISwipeGestureRecognizer*)gestureRecognizer
{
    ;
}
</code></pre>

<p>按预期为我工作。
希望这会对你有所帮助..</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 不同项目的不同宽度 - 在 iCarousel 中,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31205529/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31205529/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 不同项目的不同宽度 - 在 iCarousel 中