UITableView设置背景图片:

即设置tableView的backgroundView

UIView *view = [[UIView alloc] init];
    view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"view_bg_ipad.png"]];
    self.tableView.backgroundView = view;

相关文章:

  • 2022-12-23
  • 2021-11-24
  • 2022-12-23
  • 2022-02-28
  • 2022-01-28
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2021-12-07
  • 2022-02-08
  • 2022-02-12
相关资源
相似解决方案