Tôi tích hợp ứng dụng iCarousel với ứng dụng xem đơn.Nhưng khi tôi thêm bộ điều khiển thanh tab và đặt mã iCarousel này vào một thanh tab Item viewcontroller.But nó không hoạt động (Các mục được hiển thị nhưng không được cuộn). Sự cố ở đây là gì.Tích hợp iCarousel vào ứng dụng có trình điều khiển thanh tab trong iOS 6.1
Tôi tạo ra iCarousel như sau:
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];
Tôi đang sử dụng các phương pháp delegae và nguồn dữ liệu sau:
-(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];
[email protected]"8Apr-14Apr";
[sampleView addsubView:labelis];
return sampleView;
}
Xin gợi ý cho tôi.
Cảm ơn inadvance
ý của bạn là gì? "Mục được hiển thị nhưng không được cuộn"? – NightFury
mục có nghĩa là hình ảnh hoặc chế độ xem tùy chỉnh – rani
Vui lòng đăng nguồn dữ liệu và phương thức ủy quyền để triển khai iCarousel. – NightFury