本帖最后由 jqmoab 于 2014-04-24 00:14:23 编辑

解决方案 »

  1.   

    tableView设置这个背景应该是tableView.backgroundView.backgroundColor
      

  2.   


    我加入以下语句:
        _tableView.backgroundView.backgroundColor=[UIColor clearColor];
    跟原来一样,灰白色背景没有消失,还是和原来一样哦。
      

  3.   

    [_tableView.backgroundView setAlpha:0.0] 这个有用么
      

  4.   

    试一下这个:UIView *aView =[ [UIView alloc] initWithFrame:  _tableView.bounds ];
    aView.backgroundColor = [UIColor clearColor];
    _tableView.backgroundView = aView;