1、当创建UIViewController添加UITableView时,

self.tableView =[[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];

2、当创建UITableViewController时,需要改变UITableViewStyle时,

使用self.tableView.style = UITableViewStyleGrouped; 会出现错误

IOS-UITableViewStyle设置Group、Plain问题

查UITableViewController的SDK文档,发现:

Table views can have one of two styles, UITableViewStylePlain and UITableViewStyleGrouped. When you create a UITableView instance you must specify a table style, and this style cannot be changed.

可以在Xib文件的属性下直接修改为Group或Plain。

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
猜你喜欢
  • 2022-12-23
  • 2021-11-02
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
  • 2021-10-29
  • 2022-12-23
相关资源
相似解决方案