tableview init

2016-08-05  本文已影响3人  puppyb2m
    _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;

上一篇下一篇

猜你喜欢

热点阅读