- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 iCarousel 应用程序与单 View 应用程序集成在一起。但是当我添加标签栏 Controller 并将此 iCarousel 代码放在一个标签栏项目 View Controller 中时。但它不起作用(显示项目但不滚动)。这里有什么问题。
我创建了 iCarousel,如下所示:
iCarousel *categorySubView = [[iCarousel alloc]initWithFrame:CGRectMake(0,200, 300, 125)];
categorySubView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
categorySubView.delegate = self;
categorySubView.dataSource = self;
categorySubView.type=iCarouselTypeRotary;
[self.view addSubview:categorySubView];
-(NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel
{
return 5;
}
- (UIView *) carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view{
UIView *sampleView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 250, 300)];
sampleView.backgroundColor=[UIColor whiteColor];
UILabel *labelis=[[UILabel alloc]initWithFrame:CGRectMake(10, 10, 100, 20)];
labelis.backgroundColor=[UIColor clearColor];
labelis.text=@"8Apr-14Apr";
[sampleView addsubView:labelis];
return sampleView;
}
最佳答案
我注意到您的轮播 View 比其中的项目大小要小得多(它只有 125 点高)。
iCarousel 可以在其边界之外绘制,但它无法检测到其边界之外的触摸事件,因此这可能是您无法滚动的原因。
调试它的一个好方法是设置 carousel.clipsToBounds = YES,这样它绘制的内容将匹配可触摸的内容。另一种选择是设置 carousel.backgroundColor 以便您可以在屏幕上看到它的哪一部分是可触摸的。
要检查的另一件事是,您放置轮播的 View 已将 userInteractionEnabled 设置为 YES。
关于ios6 - iCarousel 与 iOS 6.1 中具有标签栏 Controller 的应用程序集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15895605/
我在我的应用程序中使用 iCarousel,我需要获取 iCarousel 的当前索引并将该索引显示在标签(self.view 的 subview )中,该标签不是 iCarousel 的 subvi
我正在使用 iCarousel 来滚动图像。代码是: - (CATransform3D)carousel:(iCarousel *)_carousel itemTransformForOffset:(
我使用 iCarousel 库在我的屏幕上滚动许多 UIView。每个 View 填满整个屏幕。 我需要以某种方式配置 iCarousel,以便通过短触仅滚动一个 View 。 我现在有 carous
我正在使用 iCarousel 滚动标签。在模拟器上一切正常,但在 iPad/iPhone 上滚动并不顺畅和快速 这是代码。 城市 ListView .h #import #import "iCar
我正在使用 iCarousel framework . https://github.com/nicklockwood/iCarousel 在那里我想找出 View 的滑动方向 ,因为我有下一个和上一
我正在使用NickLockwood的iCarousel。我不明白为什么不调用viewForItemAtIndex(设置断点且未命中)一切都已正确完成。datasource和delegate设置为sel
我想获取用户点击的索引。我尝试了多种方法来检测它,但都不起作用。这是我尝试过的。 func carousel(carousel: iCarousel, didSelectItemAtIndex
我正在尝试创建一个“上传图像”系统,并且我正在尝试调整每个图像之间的空间。然而,它并没有按计划进行,因为当轮播停止移动时,由于重叠,图像总是必须移到前面。我怎样才能阻止这种重叠?谢谢! func ca
我在 CollectionView 中使用 iCarousel 模块。轮播 View 位于我的 UICollectionViewCell 中。 我的代码如下。 class CelebrityDetai
我开始使用 iCarousel 但出现了这个错误: Terminating app due to uncaught exception 'NSUnknownKeyException', reason:
我在我的应用程序中使用了很棒的 iCarousel 库。但我面临一个问题。我正在使用此代码将数据填充到轮播中。 - (NSUInteger)numberOfItemsInCarousel:(iCaro
如何确定轮播的索引?或者加载到其中的数组索引?我已经从 NSDocumentDirectory 加载了图像。 self.myImages = [NSMutableArray new]; for(in
我已经在我的应用程序中实现了 iCarousel。我想让 iCarousel 通过用户迭代仅向一个方向滚动。 我的场景是一个 View 列表,用户只能通过回答当前 View 上的问题来转到下一个 Vi
我有一个 iCarousel,它包含一些位于屏幕底部下方的元素(即它们可以滚动到)。 我正在执行一个动画,其中将 CGAffineTransformMakeScale 应用于该 UIScrollVie
所以我尝试使用 iCarousel 以图像形式显示产品,然后用户可以简单地滚动并查看所有可用的产品。 出于某种原因,当您加载 viewcontroller 时,它根本不显示任何图像,甚至不显示轮播,它
我已经以编程方式设置了按钮,如下所示:- -(UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index r
我在我的 CoverFlow 应用中实现了 iCarousel。我找不到检测方法,现在显示的是哪个 View 。 有人知道吗?谢谢。 最佳答案 根据documentation ,您可以使用属性 cur
如何在特定项目或索引中滚动,例如:我在另一个 UIView 上设置了一个 NSInteger,然后将它传递给我的 iCarousel .在我的另一个 UIView 中,我这样设置 NSInteger:
我已经实现了 iCarousel 的这个方法, 开始时它会卡住,几秒钟后它允许我滚动。而且我不希望图像在滚动时重叠,我希望它们在每个项目之间都具有相等的距离。 这段代码有什么问题?或者我遗漏了什么?
我正在尝试使用以下代码将 iCarousel 添加到现有项目,但出现此错误:MemberCatalog[14990:1a903] -[MainViewController carousel:viewF
我是一名优秀的程序员,十分优秀!