tableview init

    _tableView.delegate = self;
    _tableView.dataSource = self;
    _tableView.tableFooterView = [[UIView alloc]init];
    //    _myTabelView.separatorStyle = NO;
    _tableView.scrollEnabled = NO;
    _tableView.backgroundColor = [UIColor clearColor];
UITableViewCell *cell   = [tableView dequeueReusableCellWithIdentifier :@"cell"];
if(cell == nil){
  cell = [[UITableViewCell alloc] initWithStyle :UITableViewCellStyleValue1 reuseIdentifier :@"cell"];
 }
    
cell.selectionStyle = UITableViewCellSelectionStyleNone;

你可能感兴趣的:(tableview init)