嗨,我iCarousel
在我的应用程序中使用,它将具有UITableView
子视图。当我尝试滑动或平移以显示下一个或上一个项目时,它不起作用。我认为UITableView's
手势识别器会禁用 iCarousel 的手势识别器。有很多这样的问题,但我没有看到任何答案。附件是示例图像
请指导我解决这个问题。
代码
_carousel =[[iCarousel alloc]initWithFrame:self.view.frame];
_carousel.type = iCarouselTypeLinear;
_carousel.pagingEnabled = YES;
_carousel.delegate = self;
_carousel.dataSource = self;
[self.view addSubview:_carousel];