我是新来的iOS programming.I找到用于显示图像视图的Cover Flow教程如图链接http://code4app.net/ios/iCarousel-for-Cover-Flow/4f87d2db06f6e79d32000000
但我的要求是,以显示tableviews作为封面流的列表。 请帮我。
我是新来的iOS programming.I找到用于显示图像视图的Cover Flow教程如图链接http://code4app.net/ios/iCarousel-for-Cover-Flow/4f87d2db06f6e79d32000000
但我的要求是,以显示tableviews作为封面流的列表。 请帮我。
在这里,我已经使用iCarousel视图。 该SDK(进口iCarousel.h&iCarousel.m)集成到应用程序之后。 创建在所有icarousel子视图ICarousel视图和集成表视图。 这里是我的代码
在.h文件中
iCarousel *categorySubView;
在.m文件。
-(Void)createIcarousel{
categorySubView = [[iCarousel alloc]initWithFrame:CGRectMake(10, 108, 480, 125)];
// categorySubView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
categorySubView.delegate = self;
categorySubView.dataSource = self;
categorySubView.type=iCarouselTypeCoverFlow2;
[self.view addSubview:categorySubView];
}
-(NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel
{
return 10;
}
- (UIView *) carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view{
UITableView *sampleTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 150, 150) style:UITableViewStylePlain];
sampleTable.dataSource = self;
sampleTable.delegate = self;
[sampleTable setBackgroundColor:[UIColor blackColor]];
return sampleTable;
}
- (BOOL)carousel:(iCarousel *)carousel shouldSelectItemAtIndex:(NSInteger)index{
return YES;
}
- (CGFloat)carouselItemWidth:(iCarousel *)carousel
{
//usually this should be slightly wider than the item views
return 180;
}
#pragma Table view delegate Methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
// cell.textLabel.text = [yourarray objectAtIndex:indexPath.row];
return cell;
}
它的做工精细的输出是这样的...