设置UITableView的背景图片:
UIImageView *imageView=[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"hi.jpg"]]; [self.tableView setBackgroundView:imageView];
设置UITableView不显示多余的空Cell:
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
时间: 2024-10-25 12:56:42