[treeTableView setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];
[treeTableView setBackgroundColor:[UIColor blueColor] /*#fff9f4*/];
[treeTableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
[treeTableView setRowHeight:45.0f];
treeTableView.backgroundView = [[UIView alloc] init];
treeTableView.backgroundColor = [UIColor clearColor];
[self.view addSubview:treeTableView];
时间: 2024-11-08 04:33:55