我是這樣創建tableview的:
myTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320, 400) style:UITableViewStyleGrouped];
然後創建出來tableView
是圓角,我需要的是直角(這樣tableview
看起來像個矩形),而且還可以分成許多部分。怎麼實現?
在tableView數據源,在cellForRowAtIndexPath中可以設置單元的背景為空
cell.backgroundView = [[UIView alloc] initWithFrame:CGRectZero()];
你可以在cell背景中添加一個圖片什麼的