在tableview中的Scrollview分页

时间:2011-07-15 10:32:54

标签: objective-c cocoa-touch ipad uitableview uiscrollview

我想创建一个启用分页的滚动视图,有5个页面,但问题是这些页面必须持有tableview.how才能执行此操作。

1 个答案:

答案 0 :(得分:2)

试试这个:

scroll=[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
    scroll.backgroundColor=[UIColor clearColor];
    scroll.pagingEnabled=YES;
    scroll.contentSize = CGSizeMake(320*5, 460);
    CGFloat x=0;
    for(int i=1;i<6;i++)
    {
        UITableView *table = [[UITableView alloc]initWithFrame:CGRectMake(x+10, 10, 300, 440) style:UITableViewStyleGrouped];
        table.delegate=self;
        table.dataSource=self;
        [scroll addSubview:table];
        [table release];
        x+=320;
    }
    [self.view addSubview:scroll];
    scroll.showsHorizontalScrollIndicator=NO;
    [scroll release];