我希望 iCarousel 从左侧开始出现,即它应该左对齐。我发现在线性轮播的情况下,它从屏幕中心开始。
如何使线性旋转木马从左侧开始?
[self.vwCoverFlow scrollToItemAtIndex:2 animated:YES];
就我而言,在我的 viewDidLoad 中使用该方法帮助了我。
如果您想要线性滚动,您可以使用 swipeView 类,它与 iCarousel 来自同一开发人员,但仅用于线性滚动。我用过它,它确实支持左对齐。它易于添加和使用,与 iCarousel 相同
将 wrap 属性设置为 YES 并将 placeholderinCarousel 的数量返回为 2
我遇到了同样的问题,并通过以下 hack 来解决;)
问题: 我需要只显示 3 个始终左对齐的项目的视图。
解决方案: 我所做的是始终至少制作 3 个项目。如果我有 0、1 或 2 个项目,我总是创建 3 个,但那些不需要显示的项目我将创建为空 UIView。我总是有 2 个占位符,但在某些情况下,一个或两个都是空的。
例如,如果我们要显示 2 个项目,我实际上创建了三个,但第三个是空的 UIView。我正在创建两个占位符和一个项目。
如果我们要显示 1 个项目,我再次创建三个,但第二个和第三个是空的 UIView。与前面的示例相同,我正在创建两个占位符和一个项目。
由于这种逻辑,我总是在重用时清理视图([v removeFromSuperview]),以确保它是干净的,如果需要显示新视图,我正在添加它([view addSubview ...)。项目和占位符的相同逻辑
如果您需要显示 3 个以上的项目,您可以使用相同的逻辑,但将值 3 更改为其他值。如果我错了更新我;)
这是我的代码的一部分,对我有用;)
- (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel
{
return [[self getRecordings] count] > 3? [[self getRecordings] count] - 2: 1;
}
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
if (view == nil)
{
view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 30)];
}
else
{
// If reusing remove content from holder view for fake items
for (UIView *v in view.subviews)
{
[v removeFromSuperview];
}
}
if ([[self getRecordings] count] >= 2)
{
[view addSubview:[(RecordingItemViewController*)[_recordingItemViewControllers objectAtIndex:index + 1] view]];
}
return view;
}
- (NSUInteger)numberOfPlaceholdersInCarousel:(iCarousel *)carousel
{
return 2;
}
- (UIView *)carousel:(iCarousel *)carousel placeholderViewAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
if (view == nil)
{
view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 30)];
}
else
{
// If reusing remove content from holder view for fake items
for (UIView *v in view.subviews)
{
[v removeFromSuperview];
}
}
if (([[self getRecordings] count] > 0 && [[self getRecordings] count] < 3 && index == 0) || [[self getRecordings]count] >= 3)
{
[view addSubview:[(RecordingItemViewController*)(index == 0? [_recordingItemViewControllers objectAtIndex:0]: [_recordingItemViewControllers lastObject]) view]];
}
return view;
}
这对我有用
- (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel{
[carousel scrollToItemAtIndex:photosArray.count/2 animated:YES];
return [photosArray count];
}
在你的情况下,我想建议使用 2 占位符。
例如:您有 n 张照片,那么您将有 (n-2) 个项目和 2 个占位符。- 项目索引从 1 到 (n-2)。- 占位符的索引为 0 和 (n-1)。现在我们将有一些这样的代码:
#pragma mark iCarousel DataSource
- (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel
{
//if we have n photos, then number of items is (n-2)
int count = _movieGalleries.count;
return count >= 3 ? count - 2 : count;
}
- (NSUInteger)numberOfPlaceholdersInCarousel:(iCarousel *)carousel
{
//2 placeholder
return _movieGalleries.count >= 3 ? 2 : 0;
}
#pragma mark iCarousel Delegate
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
//reuse your view
UIView *yourview = ...
//get your data
//index of item is 1 -> n-2, index of placeholder is 0 and n-1
Item *item = [_listItems objectAtIndex:index + 1];
//config your view
...
return yourView;
}
- (UIView*)carousel:(iCarousel *)carousel placeholderViewAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
//index of placeholder is 0 and n-1
//Trick: we use viewForItemAtIndex for getting placeholder view
index = index == 0 ? - 1 : carousel.numberOfItems;
return [self carousel:carousel viewForItemAtIndex:index reusingView:view];
}
- (void)carousel:(iCarousel *)carousel didSelectItemAtIndex:(NSInteger)index
{
//in carousel with placeholder, index of selected item is -1, 0, 1, ..., (n-2). which -1 and (n-2) is index of placeholders. So that we need to increase index by 1
NSLog("current index: %i", index + 1);
}
斯威夫特 5:
对我有用的解决方案:使轮播宽度为屏幕宽度的两倍,并将轮播限制在屏幕的 XAnchor 上,稍后添加contentOffset
为轮播宽度的 0.5 x 大小。containerView: UIView
在某些而不是直接在其中显示轮播也很重要。viewController
这很有效,因为轮播的第一项以轮播的中心为中心。如果您将 carousel 设置为视图大小的两倍并将 设置contentOffset
为左侧(- carousel 的 0.5 x 大小),则中心将位于视图的左侧。这是一些示例代码:
设置轮播大小:
carousel.leadingAnchor.constraint(equalTo: containerView.leadingAnchor).isActive = true
carousel.trailingAnchor.constraint(equalTo: containerView.trailingAnchor).isActive = true
carousel.translatesAutoresizingMaskIntoConstraints = false
carousel.heightAnchor.constraint(equalToConstant: 200).isActive = true
carousel.widthAnchor.constraint(equalTo: self.containerView.widthAnchor, multiplier: 2).isActive = true
carousel.centerXAnchor.constraint(equalTo: containerView.centerXAnchor).isActive = true
carousel.topAnchor.constraint(equalTo: containerView.topAnchor).isActive = true
设置轮播内容偏移量:
carousel.contentOffset = CGSize(width: - containerView.frame.size.width, height: 0)
设置 property scrollToItemBoundry
,这样当您向右滚动时,您的轮播项目不会超出您的范围:
carousel.scrollToItemBoundary = true
稍后您将您的添加containerView
到您的viewController.view
:
viewController.view.addSubView(containerView)
containerView.translatesAutoresizingMaskIntoConstraints = false
containerView.centerXAnchor.constraint(equalTo: viewController.view.centerXAnchor).isActive = true
containerView.centerYAnchor.constraint(equalTo: viewController.view.centerYAnchor).isActive = true