我有一个表,我还声明了它的样式作为分组表样式在视图中确实加载了,但我也有一个单击按钮,我想更改同一个表的样式。
最初我在视图中设置了这个加载方法:
tableObj= [[UITableView alloc]initWithFrame:CGRectMake(5,50,310,300)style:UITableViewStyleGrouped];
但是在按钮单击事件上,我正在设置 tableview 框架和样式,请参见下面的代码
tableObj.frame=CGRectMake(5,50,310,300);
tableObj style=UITableViewStylePlain;
但它给出了一个错误.....分配给只读属性??