_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 100, SCREEN_WIDTH, SCREEN_HEIGHT - 164) style:UITableViewStylePlain];
self.automaticallyAdjustsScrollViewInsets = NO;
_tableView.delegate = self;
_tableView.dataSource = self;
_tableView.rowHeight = 100;
//为了让分割线从头开始
if ([_tableView respondsToSelector:@selector(setSeparatorInset:)])
{
[_tableView setSeparatorInset:UIEdgeInsetsZero];
}
if ([_tableView respondsToSelector:@selector(setLayoutMargins:)])
{
[_tableView setLayoutMargins:UIEdgeInsetsZero];
}
_tableView.separatorColor = [UIColor lightGrayColor];
[self.view addSubview:_tableView];