// 设置表视图的颜色 _tableView.backgroundColor = [UIColor yellowColor]; // 设置表视图的分割线的颜色// _tableView.separatorColor = [UIColor purpleColor]; // 设置表视图的分割线的风格 _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; // 设置表视图的头部视图(headView 添加子视图)UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 80)]; headerView.backgroundColor = [UIColor redColor] // 添加子视图 UILabel *headText = [[UILabel alloc] initWithFrame:CGRectMake(60, 0, 200, 80)]; headText.text = @"天晴朗,天晴朗天晴朗天晴朗!"; // 是否自动换行 0 换行,1 自动缩略 headText.numberOfLines = 0; [headerView addSubview:headText]; [headText release]; _tableView.tableHeaderView = headerView; [headerView release]; // 设置表视图的尾部视图(footerView 添加子视图) UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 80)]; footerView.backgroundColor = [UIColor yellowColor]; _tableView.tableFooterView = footerView; [footerView release];