自定义的tableview出现上边空白

   self.tableview.delegate = self;
    self.tableview.dataSource = self;
    [self.tableview registerClass:[UITableViewCell class] forCellReuseIdentifier:ID];
    _tableview.separatorInset=UIEdgeInsetsMake(0,10, 0, 10);//top left bottom right
    _tableview.separatorStyle=UITableViewCellSeparatorStyleSingleLine;
    _tableview.editing = YES;
    self.automaticallyAdjustsScrollViewInsets = NO;
    [self.screenview addSubview:_tableview];

你可能感兴趣的:(自定义的tableview出现上边空白)