UITableView* CSTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)]; CSTableView.delegate=self; CSTableView.dataSource=self; [self.view addSubview:CSTableView]; CSTableView.backgroundColor = [UIColor redcolor];//添加颜色 [CSTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];//去除分割线 CSTableView.contentSize=CGSizeMake(320,1440); CSTableView.scrollEnabled=YES; CSTableView.showsVerticalScrollIndicator=NO; CSTableView.showsHorizontalScrollIndicator=NO; [self.view addSubview:CenterTableView];